Fix EOF
This commit is contained in:
parent
4cc65329bd
commit
50aaacb903
|
@ -25,4 +25,4 @@ export default class RowsApi {
|
||||||
const json = await response.json()
|
const json = await response.json()
|
||||||
return [response, json]
|
return [response, json]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,4 +37,4 @@ export default class TablesApi {
|
||||||
return [response, json]
|
return [response, json]
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,4 +5,4 @@ export const generateNewRowForTable = (tableId: string): Row => {
|
||||||
TestColumn: "TestRow",
|
TestColumn: "TestRow",
|
||||||
tableId: tableId
|
tableId: tableId
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,4 +32,3 @@ export const generateNewColumnForTable = (tableData: any): Table => {
|
||||||
newColumn.updatedAt = new Date().toISOString()
|
newColumn.updatedAt = new Date().toISOString()
|
||||||
return newColumn
|
return newColumn
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
export interface responseMessage { message: string }
|
export interface responseMessage { message: string }
|
||||||
|
|
Loading…
Reference in New Issue