feat(social): like button fix

This commit is contained in:
aayush262 2024-04-26 19:57:55 +05:30
parent 856deb7755
commit da456d3067
19 changed files with 223 additions and 172 deletions

View file

@ -63,11 +63,11 @@ enum class PrefName(val data: Pref) { //TODO: Split this into multiple files
ImmersiveMode(Pref(Location.UI, Boolean::class, false)),
SmallView(Pref(Location.UI, Boolean::class, true)),
DefaultStartUpTab(Pref(Location.UI, Int::class, 1)),
HomeLayoutShow(
HomeLayout(
Pref(
Location.UI,
List::class,
listOf(true, false, false, true, false, false, true)
listOf(true, false, false, true, false, false, true, true)
)
),
BannerAnimations(Pref(Location.UI, Boolean::class, true)),