chore: update deps

This commit is contained in:
2025-08-18 14:24:13 +07:00
parent c2b276f3f3
commit 07a2f6980e
4 changed files with 171 additions and 171 deletions

View File

@@ -411,7 +411,7 @@ impl ChatSpace {
.active(|this| this.bg(cx.theme().ghost_element_active))
.child(shared_t!("auto_update.updated"))
.on_click(|_, _window, cx| {
cx.restart(None);
cx.restart();
}),
)
})

View File

@@ -150,7 +150,7 @@ impl BackupKeys {
return;
};
let path = cx.prompt_for_new_path(&document_dir);
let path = cx.prompt_for_new_path(&document_dir, None);
let nsec = self.secret_input.read(cx).value().to_string();
cx.spawn_in(window, async move |this, cx| {

View File

@@ -121,7 +121,7 @@ impl Render for Startup {
Identity::global(cx).update(cx, |this, cx| {
this.unload(window, cx);
// Restart application
cx.restart(None);
cx.restart();
});
}),
),