Skip to content

Commit

Permalink
Removed appLink from Android Frontegg State
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-minaiev-frontegg committed Aug 21, 2024
1 parent e8cbe68 commit cfc20a4
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ data class FronteggState(
val isLoading: Boolean,
val initializing: Boolean,
val showLoader: Boolean,
val appLink: Boolean,
) {
fun toMap(): Map<String, Any?> {
return mapOf(
Expand All @@ -21,7 +20,6 @@ data class FronteggState(
Pair("isLoading", isLoading),
Pair("initializing", initializing),
Pair("showLoader", showLoader),
Pair("appLink", appLink),
)
}

Expand All @@ -33,7 +31,6 @@ data class FronteggState(
isAuthenticated,
isLoading,
initializing,
appLink,
showLoader
)
}
Expand All @@ -48,7 +45,6 @@ data class FronteggState(
isAuthenticated == state.isAuthenticated &&
isLoading == state.isLoading &&
initializing == state.initializing &&
appLink == state.appLink &&
showLoader == state.showLoader;
}
}

0 comments on commit cfc20a4

Please sign in to comment.