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 {sanitizeDisplayName} from '#/lib/strings/display-names'
import {sanitizeHandle} from '#/lib/strings/handles'
import {isAndroid} from '#/platform/detection'
import {POST_TOMBSTONE, usePostShadow} from '#/state/cache/post-shadow'
import {FeedPostSliceItem, usePostFeedQuery} from '#/state/queries/post-feed'
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.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]}>
<PreviewableUserAvatar profile={post.author} size={32} />
<View>
@@ -429,7 +430,7 @@ function VibeOverlay({
</LinearGradient>
</View>
</GestureDetector>
{status === 'loading' && (
{isAndroid && status === 'loading' && (
<View
style={[
a.absolute,