An ATproto social media client -- with an independent Appview.
6
fork

Configure Feed

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

Release fixes (#3318)

* Fix error overflow

* await setSavedFeeds before setting birth date

* await birth date first instead of feeds

---------

Co-authored-by: Samuel Newman <mozzius@protonmail.com>

authored by

Eric Bailey
Samuel Newman
and committed by
GitHub
4d50aac4 e874dd29

+3 -3
+1 -1
src/components/forms/FormError.tsx
··· 20 20 a.gap_sm, 21 21 ]}> 22 22 <Warning fill={t.palette.white} size="md" /> 23 - <View> 23 + <View style={[a.flex_1]}> 24 24 <Text style={[{color: t.palette.white}, a.font_bold, a.leading_snug]}> 25 25 {error} 26 26 </Text>
+2 -2
src/screens/Signup/state.ts
··· 207 207 }) { 208 208 const {_} = useLingui() 209 209 const {createAccount} = useSessionApi() 210 - const {mutate: setBirthDate} = usePreferencesSetBirthDateMutation() 210 + const {mutateAsync: setBirthDate} = usePreferencesSetBirthDateMutation() 211 211 const {mutate: setSavedFeeds} = useSetSaveFeedsMutation() 212 212 const onboardingDispatch = useOnboardingDispatch() 213 213 ··· 264 264 inviteCode: state.inviteCode.trim(), 265 265 verificationCode: verificationCode, 266 266 }) 267 - setBirthDate({birthDate: state.dateOfBirth}) 267 + await setBirthDate({birthDate: state.dateOfBirth}) 268 268 if (IS_PROD_SERVICE(state.serviceUrl)) { 269 269 setSavedFeeds(DEFAULT_PROD_FEEDS) 270 270 }