Vault picker: remove a vault from the Recent list (#93); fix Tasks view showing "All Notes" as the mobile header title

This commit is contained in:
Yuri Karamian
2026-06-11 20:48:20 +02:00
parent 784248f984
commit 2fea44bde6
5 changed files with 81 additions and 6 deletions
+4
View File
@@ -20,6 +20,10 @@ export async function openVault(path: string): Promise<void> {
return invoke("open_vault", { path });
}
export async function removeVault(path: string): Promise<void> {
return invoke("remove_vault", { path });
}
export async function getAppConfig(): Promise<AppConfig> {
return invoke("get_app_config");
}