this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Enable Boosts Carousel by default

Fix the logic here

+3 -1
+3 -1
src/utils/states.js
··· 24 24 showDrafts: false, 25 25 composeCharacterCount: 0, 26 26 settings: { 27 - boostsCarousel: store.local.get('settings:boostsCarousel') === '1' ?? true, 27 + boostsCarousel: store.local.get('settings:boostsCarousel') 28 + ? store.local.get('settings:boostsCarousel') 29 + : true, 28 30 }, 29 31 }); 30 32 export default states;