1
0
Fork 0
mirror of synced 2024-10-02 10:08:09 +13:00

Remove unecessary const

This commit is contained in:
Pedro Silva 2022-10-18 17:34:19 +01:00
parent 814670cbed
commit bbd42b4db3

View file

@ -53,9 +53,8 @@ export const generateNewColumnForTable = (tableData: any): Table => {
}
export const generateNewRowForTable = (tableId: string): Row => {
const newRow = {
return {
TestColumn: "TestRow",
tableId: tableId
}
return newRow
}