Skip to content

Commit

Permalink
Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
revanthkumarJ committed Jan 11, 2025
1 parent b94c9ca commit 4bf625c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ class PreferencesHelper(private val settings: Settings) {
}
}



fun saveToken(token: String) {
settings.putString(TOKEN, token)
}
Expand Down Expand Up @@ -148,7 +146,7 @@ class PreferencesHelper(private val settings: Settings) {
clientId = clientId,
userName = userName,
isAuthenticated = isAuthenticated,
userId = userId
userId = userId,
)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ enum class AppTheme(
) {
SYSTEM(themeName = "System Theme"),
LIGHT(themeName = "Light Theme"),
DARK(themeName = "Dark Theme");
DARK(themeName = "Dark Theme"),
;

companion object {
fun fromOrdinal(ordinal: Int): AppTheme {
Expand Down

0 comments on commit 4bf625c

Please sign in to comment.