chore: bump version (#3784)

This commit is contained in:
Alex Yang
2023-08-16 14:53:33 -05:00
committed by GitHub
parent 61ffc4220c
commit 61ba85e1f3
25 changed files with 2020 additions and 1520 deletions

View File

@@ -38,9 +38,8 @@ export const ExportPanel = ({ workspace }: ExportPanelProps) => {
const t = useAFFiNEI18N();
const onExport = useCallback(async () => {
await syncBlobsToSqliteDb(workspace);
const result: SaveDBFileResult = await window.apis?.dialog.saveDBFileAs(
workspaceId
);
const result: SaveDBFileResult =
await window.apis?.dialog.saveDBFileAs(workspaceId);
if (result?.error) {
toast(t[result.error]());
} else if (!result?.canceled) {