fix format, unused vars

This commit is contained in:
Paul Paffe
2023-07-05 03:41:22 -04:00
parent c490f00873
commit fa648b1e00
2 changed files with 9 additions and 16 deletions
+1 -3
View File
@@ -1,6 +1,5 @@
import { browser } from '$app/environment';
import { persisted } from 'svelte-local-storage-store';
import { writable } from 'svelte/store';
const initialTheme = browser && !window.matchMedia('(prefers-color-scheme: dark)').matches ? 'light' : 'dark';
@@ -48,5 +47,4 @@ export const albumViewSettings = persisted<AlbumViewSettings>('album-view-settin
sortBy: 'Most recent photo',
});
export const lastUpdatedProfilePicture = persisted<Number>('last-updated-profile-picture', 0, {});
export const lastUpdatedProfilePicture = persisted<number>('last-updated-profile-picture', 0, {});