Programmatically build links. Styling Changes

This commit is contained in:
2023-11-16 16:35:41 -05:00
parent 791f065367
commit 214cfbd1be
14 changed files with 278 additions and 142 deletions

View File

@@ -1,5 +1,5 @@
import { defineStore } from 'pinia';
import { ID, account, client } from 'boot/appwrite';
import { ID, account } from 'boot/appwrite';
import type { Models } from 'appwrite';
import { ref } from 'vue';
@@ -10,7 +10,7 @@ export const useAuthStore = defineStore('auth', () => {
try {
currentUser.value = await account.get();
} catch {
return (currentUser.value = null);
currentUser.value = null;
}
}