rm spinner on ios

This commit is contained in:
Samuel Newman
2025-01-16 01:02:51 +00:00
committed by Eric Bailey
parent 2d80d42855
commit 8cf1ecab1d
+3 -2
View File
@@ -40,6 +40,7 @@ import {useNonReactiveCallback} from '#/lib/hooks/useNonReactiveCallback'
import {CommonNavigatorParams, NavigationProp} from '#/lib/routes/types' import {CommonNavigatorParams, NavigationProp} from '#/lib/routes/types'
import {sanitizeDisplayName} from '#/lib/strings/display-names' import {sanitizeDisplayName} from '#/lib/strings/display-names'
import {sanitizeHandle} from '#/lib/strings/handles' import {sanitizeHandle} from '#/lib/strings/handles'
import {isAndroid} from '#/platform/detection'
import {POST_TOMBSTONE, usePostShadow} from '#/state/cache/post-shadow' import {POST_TOMBSTONE, usePostShadow} from '#/state/cache/post-shadow'
import {FeedPostSliceItem, usePostFeedQuery} from '#/state/queries/post-feed' import {FeedPostSliceItem, usePostFeedQuery} from '#/state/queries/post-feed'
import {useSetMinimalShellMode} from '#/state/shell' import {useSetMinimalShellMode} from '#/state/shell'
@@ -387,7 +388,7 @@ function VibeOverlay({
? ['rgba(0,0,0,0)', 'rgba(0,0,0,0.6)', 'rgba(0,0,0,0.8)'] ? ['rgba(0,0,0,0)', 'rgba(0,0,0,0.6)', 'rgba(0,0,0,0.8)']
: ['rgba(0,0,0,0)', 'rgba(0,0,0,0.8)'] : ['rgba(0,0,0,0)', 'rgba(0,0,0,0.8)']
} }
style={[a.w_full, a.px_xl, a.py_sm, a.gap_sm]}> style={[a.w_full, a.px_xl, a.py_sm, a.gap_md]}>
<View style={[a.flex_row, a.gap_md, a.align_center]}> <View style={[a.flex_row, a.gap_md, a.align_center]}>
<PreviewableUserAvatar profile={post.author} size={32} /> <PreviewableUserAvatar profile={post.author} size={32} />
<View> <View>
@@ -429,7 +430,7 @@ function VibeOverlay({
</LinearGradient> </LinearGradient>
</View> </View>
</GestureDetector> </GestureDetector>
{status === 'loading' && ( {isAndroid && status === 'loading' && (
<View <View
style={[ style={[
a.absolute, a.absolute,