diff --git a/.gitignore b/.gitignore index 6635cf5..e539ab4 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ node_modules !.env.example vite.config.js.timestamp-* vite.config.ts.timestamp-* +.vercel \ No newline at end of file diff --git a/src/lib/components/Gpg.svelte b/src/lib/components/Gpg.svelte deleted file mode 100644 index 3c6b8fc..0000000 --- a/src/lib/components/Gpg.svelte +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - GPG Key - - {#await gpg then text} - -

{text}

-
- {:catch} -

Couldn't fetch GPG key.

- {/await} -
-
- - - Download - - Copy - Close - -
-
diff --git a/src/lib/components/Navbar/Drawer.svelte b/src/lib/components/Navbar/Drawer.svelte index 84c5a44..cde6948 100644 --- a/src/lib/components/Navbar/Drawer.svelte +++ b/src/lib/components/Navbar/Drawer.svelte @@ -6,15 +6,9 @@ import Button from '../ui/button/button.svelte'; import { Sun, Moon, Home, Person, File, Backpack } from 'svelte-radix'; import ThemePicker from '../ThemePicker.svelte'; - - let open: boolean = false; - - const close = () => { - open = false; - }; - +