Skip to content

Commit

Permalink
fix: imageCompressionMode is nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
anatawa12 authored Apr 22, 2024
1 parent 81dad3f commit c796665
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/frontend/src/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export const defaultStore = markRaw(new Storage('base', {
},
imageCompressionMode: {
where: 'account',
default: 'resizeCompress' as 'resizeCompress' | 'noResizeCompress' | 'resizeCompressLossy' | 'noResizeCompressLossy' | null,
default: 'resizeCompress' as 'resizeCompress' | 'noResizeCompress' | 'resizeCompressLossy' | 'noResizeCompressLossy',
},
memo: {
where: 'account',
Expand Down

0 comments on commit c796665

Please sign in to comment.