File tree Expand file tree Collapse file tree
packages/mobile/src/screens/explore-screen/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import { exploreMessages as messages } from '@audius/common/messages'
1010import { FeatureFlags } from '@audius/common/services'
1111
1212import { useTheme } from '@audius/harmony-native'
13- import { ContestCard } from 'app/components/contest-card'
13+ import { ContestCard , ContestCardSkeleton } from 'app/components/contest-card'
1414import { CardList } from 'app/components/core'
1515import { RemixContestCard } from 'app/components/remix-carousel/RemixContestCard'
1616import { TrackCardSkeleton } from 'app/components/track/TrackCardSkeleton'
@@ -61,7 +61,9 @@ export const FeaturedRemixContests = () => {
6161 horizontal
6262 carouselSpacing = { spacing . l }
6363 isLoading = { isAllContestsPending }
64- LoadingCardComponent = { TrackCardSkeleton }
64+ LoadingCardComponent = { ( ) => (
65+ < ContestCardSkeleton style = { { minWidth : 250 } } />
66+ ) }
6567 />
6668 ) : (
6769 < CardList
You can’t perform that action at this time.
0 commit comments