Skip to content

Commit

Permalink
fix(PostgreSQL): unable to export as sql inserts
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabio286 committed Jun 14, 2023
1 parent 89815bf commit e07e7b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/libs/exportRows.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const exportRows = (args: {
client:
args.client,
fields: args.fields,
table: args.sqlOptions.targetTable || args.table,
table: args.sqlOptions?.targetTable || args.table,
options: args.sqlOptions
});

Expand Down

0 comments on commit e07e7b7

Please sign in to comment.