Remove unecessary const

This commit is contained in:
Pedro Silva 2022-10-18 17:34:19 +01:00
parent eae27b48b6
commit ea27fb1038
1 changed files with 1 additions and 2 deletions

View File

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