mirror of
https://github.com/Jellify-Music/App.git
synced 2026-01-09 20:40:52 -06:00
Fix Multiple Spinners on Artist Page (#442)
fix issue where multiple spinners would appear on the artists page update tamagui
This commit is contained in:
@@ -44,7 +44,7 @@
|
||||
"@react-navigation/native-stack": "^7.3.21",
|
||||
"@sentry/react-native": "^6.17.0",
|
||||
"@shopify/flash-list": "^2.0.0-rc.11",
|
||||
"@tamagui/config": "^1.132.6",
|
||||
"@tamagui/config": "^1.132.7",
|
||||
"@tanstack/query-sync-storage-persister": "^5.83.0",
|
||||
"@tanstack/react-query": "^5.83.0",
|
||||
"@tanstack/react-query-persist-client": "^5.83.0",
|
||||
@@ -87,7 +87,7 @@
|
||||
"react-native-uuid": "^2.0.3",
|
||||
"react-native-vector-icons": "^10.2.0",
|
||||
"ruby": "^0.6.1",
|
||||
"tamagui": "^1.132.6"
|
||||
"tamagui": "^1.132.7"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.28.0",
|
||||
@@ -134,4 +134,4 @@
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -122,15 +122,12 @@ export default function Artists({
|
||||
) : null
|
||||
}
|
||||
ListEmptyComponent={
|
||||
isPending || isFetchingNextPage ? (
|
||||
<ActivityIndicator />
|
||||
) : (
|
||||
isPending || isFetchingNextPage ? null : (
|
||||
<YStack justifyContent='center'>
|
||||
<Text>No artists</Text>
|
||||
</YStack>
|
||||
)
|
||||
}
|
||||
ListFooterComponent={isPending ? <ActivityIndicator /> : null}
|
||||
stickyHeaderIndices={
|
||||
showAlphabeticalSelector
|
||||
? artists
|
||||
|
||||
Reference in New Issue
Block a user