diff --git a/src/app/Scenes/HomeView/Components/ArtistSaveOnboardingBottomSheet.tsx b/src/app/Scenes/HomeView/Components/ArtistSaveOnboardingBottomSheet.tsx
index b22a483fd94..1f172eca47d 100644
--- a/src/app/Scenes/HomeView/Components/ArtistSaveOnboardingBottomSheet.tsx
+++ b/src/app/Scenes/HomeView/Components/ArtistSaveOnboardingBottomSheet.tsx
@@ -8,6 +8,7 @@ import { AutomountedBottomSheetModal } from "app/Components/BottomSheet/Automoun
import { PaginationBars } from "app/Scenes/InfiniteDiscovery/Components/PaginationBars"
import { GlobalStore } from "app/store/GlobalStore"
import { useFeatureFlag } from "app/utils/hooks/useFeatureFlag"
+import { MotiView } from "moti"
import { useState, useRef, useCallback, useEffect } from "react"
import { Platform } from "react-native"
import PagerView, { PagerViewOnPageScrollEvent } from "react-native-pager-view"
@@ -103,27 +104,53 @@ export const ArtistSaveOnboardingBottomSheet = () => {
- {DUMMY_FOLLOWED_ARTISTS.slice(0, 3).map((artist, index) => (
- 0 ? -10 : 0,
- zIndex: index,
- shadowColor: "#000",
- shadowOffset: { width: 0, height: 3 },
- shadowOpacity: 0.35,
- shadowRadius: 6,
- elevation: 8,
- }}
- >
-
-
- ))}
+ {DUMMY_FOLLOWED_ARTISTS.slice(0, 3).map((artist, index) => {
+ let startPosition = 0
+ let zIndexValue = 1
+
+ if (index === 0) {
+ startPosition = 40
+ zIndexValue = 0
+ } else if (index === 1) {
+ startPosition = 0
+ zIndexValue = 1
+ } else if (index === 2) {
+ startPosition = -40
+ zIndexValue = 2
+ }
+
+ return (
+
+ 0 ? -10 : 0,
+ zIndex: zIndexValue,
+ shadowColor: "#000",
+ shadowOffset: { width: 0, height: 3 },
+ shadowOpacity: 0.35,
+ shadowRadius: 6,
+ elevation: 8,
+ }}
+ >
+
+
+
+ )
+ })}