mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-02-17 15:51:51 +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,
|
showDrafts: false,
|
||||||
composeCharacterCount: 0,
|
composeCharacterCount: 0,
|
||||||
settings: {
|
settings: {
|
||||||
boostsCarousel: store.local.get('settings:boostsCarousel') === '1' ?? true,
|
boostsCarousel: store.local.get('settings:boostsCarousel')
|
||||||
|
? store.local.get('settings:boostsCarousel')
|
||||||
|
: true,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
export default states;
|
export default states;
|
||||||
|
|
Loading…
Add table
Reference in a new issue