chore: clean

This commit is contained in:
rebel onion 2025-01-06 08:22:44 -06:00
parent 31a67c8edb
commit f9f9767ecc
106 changed files with 855 additions and 584 deletions

View file

@ -36,10 +36,10 @@ class FollowerItem(
}
override fun getLayout(): Int {
return if(grid) R.layout.item_follower_grid else R.layout.item_follower
return if (grid) R.layout.item_follower_grid else R.layout.item_follower
}
override fun initializeViewBinding(view: View): ViewBinding {
return if(grid) ItemFollowerGridBinding.bind(view) else ItemFollowerBinding.bind(view)
return if (grid) ItemFollowerGridBinding.bind(view) else ItemFollowerBinding.bind(view)
}
}