1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-23 15:19:41 +02:00

chore: bump build deps (#1541)

* bump build deps

* typescript nonsense

* bump prettier
This commit is contained in:
Hayden 2022-08-08 18:38:18 -08:00 committed by GitHub
parent 95b1b8bbdc
commit 7ce02c31d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 204 additions and 70 deletions

View file

@ -22,7 +22,7 @@ export function useUserSortPreferences(): Ref<UserRecipePreferences> {
{ mergeDefaults: true }
// we cast to a Ref because by default it will return an optional type ref
// but since we pass defaults we know all properties are set.
) as Ref<UserRecipePreferences>;
) as unknown as Ref<UserRecipePreferences>;
return fromStorage;
}