Skip to content

Commit 6e24d9d

Browse files
committed
feat: enable liquid glass effect by default in HomeState
- Update the default value of `isLiquidGlassEnabled` to `true` in `HomeState`.
1 parent ccb9788 commit 6e24d9d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • feature/home/presentation/src/commonMain/kotlin/zed/rainxch/home/presentation

feature/home/presentation/src/commonMain/kotlin/zed/rainxch/home/presentation/HomeState.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ data class HomeState(
1919
val isUpdateAvailable: Boolean = false,
2020
val currentPlatform: DiscoveryPlatform = DiscoveryPlatform.All,
2121
val isPlatformPopupVisible: Boolean = false,
22-
val isLiquidGlassEnabled: Boolean = false,
22+
val isLiquidGlassEnabled: Boolean = true,
2323
)

0 commit comments

Comments
 (0)