most importantly fixes not being able to view profiles, unsure why u cant post just yet but i have an idea on what might be causing it
+5
-5
src/screens/Profile/Header/Shell.tsx
+5
-5
src/screens/Profile/Header/Shell.tsx
···
1
1
import {memo, useCallback, useEffect, useMemo} from 'react'
2
-
import {Pressable, View} from 'react-native'
2
+
import {Pressable, TouchableWithoutFeedback, View} from 'react-native'
3
3
import Animated, {
4
4
measure,
5
5
type MeasuredDimensions,
···
169
169
runOnUI(() => {
170
170
'worklet'
171
171
const rect = measure(aviRef)
172
-
runOnJS(_openLightboxAvi)(avatar, rect)
172
+
runOnJS(_openLightbox)(avatar, rect)
173
173
})()
174
174
}
175
175
}
176
176
}, [
177
177
profile,
178
178
moderation,
179
-
_openLightboxAvi,
179
+
_openLightbox,
180
180
aviRef,
181
181
liveStatusControl,
182
182
live,
···
190
190
runOnUI(() => {
191
191
'worklet'
192
192
const rect = measure(bannerRef)
193
-
runOnJS(_openLightbox)(banner, rect, 'image')
193
+
runOnJS(_openLightboxBanner)(banner, rect, 'image')
194
194
})()
195
195
}
196
-
}, [profile.banner, moderation, _openLightbox, bannerRef])
196
+
}, [profile.banner, moderation, _openLightboxBanner, bannerRef])
197
197
198
198
return (
199
199
<View style={t.atoms.bg} pointerEvents={isIOS ? 'auto' : 'box-none'}>
+6
-1
src/screens/Signup/StepInfo/index.tsx
+6
-1
src/screens/Signup/StepInfo/index.tsx
···
8
8
import {DEFAULT_SERVICE} from '#/lib/constants'
9
9
import {isEmailMaybeInvalid} from '#/lib/strings/email'
10
10
import {logger} from '#/logger'
11
-
import {isNative} from '#/platform/detection'
11
+
import {isNative, isWeb} from '#/platform/detection'
12
12
import {useSignupContext} from '#/screens/Signup/state'
13
13
import {Policies} from '#/screens/Signup/StepInfo/Policies'
14
14
import {atoms as a, native} from '#/alf'
15
15
import * as Admonition from '#/components/Admonition'
16
+
import {Button, ButtonText} from '#/components/Button'
16
17
import * as Dialog from '#/components/Dialog'
17
18
import {DeviceLocationRequestDialog} from '#/components/dialogs/DeviceLocationRequestDialog'
19
+
import {Divider} from '#/components/Divider'
18
20
import * as DateField from '#/components/forms/DateField'
19
21
import {type DateFieldRef} from '#/components/forms/DateField/types'
20
22
import {FormError} from '#/components/forms/FormError'
···
23
25
import {Envelope_Stroke2_Corner0_Rounded as Envelope} from '#/components/icons/Envelope'
24
26
import {Lock_Stroke2_Corner0_Rounded as Lock} from '#/components/icons/Lock'
25
27
import {Ticket_Stroke2_Corner0_Rounded as Ticket} from '#/components/icons/Ticket'
28
+
import {SimpleInlineLinkText as InlineLinkText} from '#/components/Link'
26
29
import {createStaticClick, SimpleInlineLinkText} from '#/components/Link'
27
30
import {Loader} from '#/components/Loader'
28
31
import {usePreemptivelyCompleteActivePolicyUpdate} from '#/components/PolicyUpdateOverlay/usePreemptivelyCompleteActivePolicyUpdate'
32
+
import {ScreenTransition} from '#/components/ScreenTransition'
29
33
import * as Toast from '#/components/Toast'
34
+
import {Text} from '#/components/Typography'
30
35
import {
31
36
isUnderAge,
32
37
MIN_ACCESS_AGE,
+1
-1
src/view/com/profile/ProfileMenu.tsx
+1
-1
src/view/com/profile/ProfileMenu.tsx
···
15
15
import {isWeb} from '#/platform/detection'
16
16
import {type Shadow} from '#/state/cache/types'
17
17
import {useModalControls} from '#/state/modals'
18
-
import {Nux, useNux, useSaveNux} from '#/state/queries/nuxs'
19
18
import {
20
19
useDeerVerificationEnabled,
21
20
useDeerVerificationTrusted,
22
21
useSetDeerVerificationTrust,
23
22
} from '#/state/preferences/deer-verification'
24
23
import {useEnableSquareButtons} from '#/state/preferences/enable-square-buttons'
24
+
import {Nux, useNux, useSaveNux} from '#/state/queries/nuxs'
25
25
import {
26
26
RQKEY as profileQueryKey,
27
27
useProfileBlockMutationQueue,
History
2 rounds
4 comments
daniela.lol
submitted
#1
1 commit
expand
collapse
couple code error fixes
expand 0 comments
pull request successfully merged
daniela.lol
submitted
#0
expand 4 comments
oh for some reason my pull request is trying to do the revert pdsagent one again??? that was merged tho wtf tangled
for the can't post part, I'm wondering if it's fixed by an upstream issue? was just about to work through over 30 merge conflicts for a git merge but I think I'll merge this first.
are u able to merge or are the "conflicts" that arent even supposed to exist stopping it?
whuh, merge conflicts? my repo is up to date tho what