Skip to content

Commit

Permalink
fix: Deeplink for urls in prod doesn't work (#290)
Browse files Browse the repository at this point in the history
  • Loading branch information
JorisBodin authored Dec 27, 2024
2 parents 2c888c7 + d42ee39 commit 2b68ee0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ sealed class MainNavigation : NavigationDestination() {
companion object {
fun NavGraphBuilder.receivedDestination(content: @Composable (AnimatedContentScope.(NavBackStackEntry) -> Unit)) {
val preprodBasePath = "${BuildConfig.PREPROD_URL}/d/{${ReceivedDestination::transferUuid.name}}"
val prodBasePath = "${BuildConfig.PROD_URL}/d/${ReceivedDestination::transferUuid.name}"
val prodBasePath = "${BuildConfig.PROD_URL}/d/{${ReceivedDestination::transferUuid.name}}"
val deepLinks = listOf(
navDeepLink<ReceivedDestination>(preprodBasePath),
navDeepLink<ReceivedDestination>(prodBasePath),
Expand Down

0 comments on commit 2b68ee0

Please sign in to comment.