Skip to content

Commit aa93229

Browse files
committed
Merge branch 'fix/tabl' of github.com:simstudioai/sim into fix/tabl
2 parents 8f2084c + 82a5744 commit aa93229

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

apps/sim/app/workspace/[workspaceId]/tables/[tableId]/components/workflow-sidebar/workflow-sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -659,8 +659,8 @@ function WorkflowSidebarBody({
659659
setNameError(nameIssue.message)
660660
return
661661
}
662+
toast.error(toError(err).message)
662663
}
663-
toast.error(toError(err).message)
664664
}
665665
}
666666

apps/sim/hooks/queries/tables.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1090,7 +1090,6 @@ export function useUploadCsvToTable() {
10901090
},
10911091
onError: (error) => {
10921092
logger.error('Failed to upload CSV:', error)
1093-
toast.error(error.message, { duration: 5000 })
10941093
},
10951094
onSettled: () => {
10961095
queryClient.invalidateQueries({ queryKey: tableKeys.lists() })
@@ -1167,7 +1166,6 @@ export function useImportCsvIntoTable() {
11671166
},
11681167
onError: (error) => {
11691168
logger.error('Failed to import CSV into table:', error)
1170-
toast.error(error.message, { duration: 5000 })
11711169
},
11721170
onSettled: (_data, _error, variables) => {
11731171
if (!variables) return

0 commit comments

Comments
 (0)