Skip to content

Commit

Permalink
fix: removed both the home and chat
Browse files Browse the repository at this point in the history
  • Loading branch information
ortolino committed May 29, 2024
1 parent 9127b5c commit 3263973
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
2 changes: 1 addition & 1 deletion app/src/main/java/com/github/se/assocify/AssocifyApp.kt
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ fun AssocifyApp(loginSaver: LoginSave) {

val firstDest =
if (CurrentUser.userUid != null && CurrentUser.associationUid != null) {
Destination.Home.route
Destination.Treasury.route
} else {
Destination.Login.route
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,4 @@ sealed class Destination(
data class EditTask(val taskUid: String) : Destination("event/task/$taskUid")
}

val MAIN_TABS_LIST =
listOf(
Destination.Home,
Destination.Treasury,
Destination.Event,
Destination.Chat,
Destination.Profile)
val MAIN_TABS_LIST = listOf(Destination.Treasury, Destination.Event, Destination.Profile)

0 comments on commit 3263973

Please sign in to comment.