Skip to content
This repository was archived by the owner on Nov 5, 2024. It is now read-only.

Commit 4d18a32

Browse files
committed
Added Missing default values for IvyFeatures
1 parent 70eb664 commit 4d18a32

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Diff for: shared/domain/src/main/java/com/ivy/domain/features/IvyFeatures.kt

+6-3
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,24 @@ class IvyFeatures @Inject constructor() : Features {
1010
key = "sort_categories_ascending",
1111
group = FeatureGroup.Category,
1212
name = "Sort categories list",
13-
description = "Show categories in ascending order (A-Z) on the transaction entry screen"
13+
description = "Show categories in ascending order (A-Z) on the transaction entry screen",
14+
defaultValue = false
1415
)
1516

1617
override val compactAccountsMode = BoolFeature(
1718
key = "compact_account_ui",
1819
group = FeatureGroup.Account,
1920
name = "Compact account cards",
20-
description = "Make the Accounts tab UI more compact and dense"
21+
description = "Make the Accounts tab UI more compact and dense",
22+
defaultValue = false
2123
)
2224

2325
override val compactCategoriesMode = BoolFeature(
2426
key = "compact_category_ui",
2527
group = FeatureGroup.Category,
2628
name = "Compact category cards",
27-
description = "Simplified design of the Categories screen"
29+
description = "Simplified design of the Categories screen",
30+
defaultValue = false
2831
)
2932

3033
override val showTitleSuggestions = BoolFeature(

0 commit comments

Comments
 (0)