Enable Boosts Carousel by default

Fix the logic here
pull/47/head
Lim Chee Aun 2023-01-17 10:06:19 +08:00
rodzic 8834c03d7a
commit e382cad22a
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

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