Updated on 2026-08-14

This commit is contained in:
Tangem 2026-05-04 09:12:51 +02:00
parent 68a237a603
commit de9b16b269
2 changed files with 9 additions and 13 deletions

View file

@ -24,5 +24,5 @@ data class StoryContent(
}
enum class StoryContentIds(val id: String, val analyticType: String) {
STORY_FIRST_TIME_SWAP(id = "first-time-swap", analyticType = "Swap"),
STORY_FIRST_TIME_SWAP(id = "first-time-swap-v2", analyticType = "Swap"),
}

View file

@ -18,24 +18,20 @@ internal object StoriesSlideConfigs {
private fun swapSlides(): ImmutableList<SlideConfig> = persistentListOf(
SlideConfig(
com.tangem.core.res.R.string.swap_story_first_title,
com.tangem.core.res.R.string.swap_story_first_subtitle,
com.tangem.core.res.R.string.swap_story_first_title_v2,
com.tangem.core.res.R.string.swap_story_first_subtitle_v2,
),
SlideConfig(
com.tangem.core.res.R.string.swap_story_second_title,
com.tangem.core.res.R.string.swap_story_second_subtitle,
com.tangem.core.res.R.string.swap_story_second_title_v2,
com.tangem.core.res.R.string.swap_story_second_subtitle_v2,
),
SlideConfig(
com.tangem.core.res.R.string.swap_story_third_title,
com.tangem.core.res.R.string.swap_story_third_subtitle,
com.tangem.core.res.R.string.swap_story_third_title_v2,
com.tangem.core.res.R.string.swap_story_third_subtitle_v2,
),
SlideConfig(
com.tangem.core.res.R.string.swap_story_forth_title,
com.tangem.core.res.R.string.swap_story_forth_subtitle,
),
SlideConfig(
com.tangem.core.res.R.string.swap_story_fifth_title,
com.tangem.core.res.R.string.swap_story_fifth_subtitle,
com.tangem.core.res.R.string.swap_story_forth_title_v2,
com.tangem.core.res.R.string.swap_story_forth_subtitle_v2,
),
)
}