mirror of
https://github.com/immich-app/immich.git
synced 2026-05-18 03:10:24 +03:00
fix format, unused vars
This commit is contained in:
@@ -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, {});
|
||||
|
||||
Reference in New Issue
Block a user