mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-24 10:15:37 +03:00
Enable Boosts Carousel by default
Fix the logic here
This commit is contained in:
parent
8834c03d7a
commit
e382cad22a
1 changed files with 3 additions and 1 deletions
|
@ -24,7 +24,9 @@ const states = proxy({
|
|||
showDrafts: false,
|
||||
composeCharacterCount: 0,
|
||||
settings: {
|
||||
boostsCarousel: store.local.get('settings:boostsCarousel') === '1' ?? true,
|
||||
boostsCarousel: store.local.get('settings:boostsCarousel')
|
||||
? store.local.get('settings:boostsCarousel')
|
||||
: true,
|
||||
},
|
||||
});
|
||||
export default states;
|
||||
|
|
Loading…
Reference in a new issue