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
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;
}