feat: first release

This commit is contained in:
2026-05-15 07:00:35 +00:00
parent 7682a94981
commit 18e256baee
8 changed files with 67 additions and 52 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ function browseParams(folderId: number | null, q: string): string {
}
export const api = {
async me(): Promise<{ logged_in: boolean }> {
async me(): Promise<{ logged_in: boolean; app_version?: string }> {
const res = await fetch("/api/me", { credentials: "include" });
return handle(res);
},