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:
Violet Caulfield
2025-07-16 08:41:30 -05:00
committed by GitHub
parent fd97126f2f
commit fc661d2f6b
3 changed files with 874 additions and 877 deletions

View File

@@ -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"
}
}
}

View File

@@ -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

1740
yarn.lock

File diff suppressed because it is too large Load Diff