Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksandarIlic committed Nov 11, 2024
1 parent f776862 commit eb73510
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,11 @@ class PremiumBuyingViewModel @Inject constructor(
UiState(
isExtendingPremium = savedStateHandle.extendExistingPremiumName != null,
primalName = savedStateHandle.extendExistingPremiumName,
stage = if (savedStateHandle.extendExistingPremiumName != null) PremiumStage.Purchase else PremiumStage.Home,
stage = if (savedStateHandle.extendExistingPremiumName != null) {
PremiumStage.Purchase
} else {
PremiumStage.Home
},
),
)
val state = _state.asStateFlow()
Expand Down

0 comments on commit eb73510

Please sign in to comment.