Skip to content

Commit

Permalink
Fixes bugs importing snow
Browse files Browse the repository at this point in the history
  • Loading branch information
ForceTower committed Apr 22, 2024
1 parent 5066dda commit 11ce957
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ class HomeBottomFragment : UFragment() {
super.onViewCreated(view, savedInstanceState)
setupNavigation()
featureFlags()
viewModel.databaseAccount.observe(viewLifecycleOwner, { handleAccount(it) })
viewModel.databaseAccount.observe(viewLifecycleOwner) { handleAccount(it) }
}

private fun handleAccount(account: Account?) {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ buildscript {
ext.kotlin_version = '1.9.23'
ext {
juice = "1.8.0"
snowpiercer = "2.2.0"
snowpiercer = "2.2.2"

// Kotlin Extensions
ktx = '1.12.0'
Expand Down

0 comments on commit 11ce957

Please sign in to comment.