chore: bump version (#3784)

(cherry picked from commit 61ba85e1f3)
This commit is contained in:
Alex Yang
2023-08-16 14:53:33 -05:00
parent 2dbee6b3eb
commit efcd106ea1
25 changed files with 2020 additions and 1520 deletions
@@ -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) {