Skip to content

Commit

Permalink
+ fix cloud preference bug
Browse files Browse the repository at this point in the history
  • Loading branch information
GeoffreyChen777 committed Jun 24, 2022
1 parent 959a44e commit 61d55be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/renderer/src/ui/preference-view/cloud-view.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const onMigrateClicked = () => {
};
window.appInteractor.getPassword("realmSync").then((password) => {
syncPassword.value = password as string;
syncPassword.value = password ? (password as string) : "";
});
// =============================================================================
Expand Down

0 comments on commit 61d55be

Please sign in to comment.