Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

BirthDateSettings OAuth fix

authored by

uwx and committed by
Tangled
689ea72f 85abf7d6

+3 -1
+3 -1
src/components/dialogs/BirthDateSettings.tsx
··· 38 38 const {isLoading, error, data: preferences} = usePreferencesQuery() 39 39 const isBirthdateUpdateAllowed = useIsBirthdateUpdateAllowed() 40 40 const {currentAccount} = useSession() 41 - const isUsingAppPassword = isAppPassword(currentAccount?.accessJwt || '') 41 + const isUsingAppPassword = currentAccount?.accessJwt 42 + ? isAppPassword(currentAccount?.accessJwt) 43 + : false 42 44 43 45 return ( 44 46 <Dialog.Outer control={control} nativeOptions={{preventExpansion: true}}>