Skip to content

Commit

Permalink
Merge pull request #181 from niri-la/fix-image-compression-mode-nullable
Browse files Browse the repository at this point in the history
fix: imageCompressionMode is nullable
  • Loading branch information
anatawa12 authored Apr 22, 2024
2 parents 81dad3f + c796665 commit fc1ce4e
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 fc1ce4e

Please sign in to comment.