Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Merge branch 'main' of github.com:bluesky-social/social-app into main

+6 -4
+4 -2
src/screens/StarterPack/Wizard/index.tsx
··· 49 49 import {StepDetails} from '#/screens/StarterPack/Wizard/StepDetails' 50 50 import {StepFeeds} from '#/screens/StarterPack/Wizard/StepFeeds' 51 51 import {StepProfiles} from '#/screens/StarterPack/Wizard/StepProfiles' 52 - import {atoms as a, useTheme} from '#/alf' 52 + import {atoms as a, useTheme, web} from '#/alf' 53 53 import {Button, ButtonText} from '#/components/Button' 54 54 import {useDialogControl} from '#/components/Dialog' 55 55 import * as Layout from '#/components/Layout' ··· 121 121 } 122 122 123 123 return ( 124 - <Layout.Screen> 124 + <Layout.Screen 125 + testID="starterPackWizardScreen" 126 + style={web([{minHeight: 0}, a.flex_1])}> 125 127 <Provider starterPack={starterPack} listItems={listItems}> 126 128 <WizardInner 127 129 currentStarterPack={starterPack}
+1 -1
src/view/com/composer/ExternalEmbedRemoveBtn.tsx
··· 11 11 const {_} = useLingui() 12 12 13 13 return ( 14 - <View style={[a.absolute, a.pt_sm, a.pr_sm, a.z_50, {top: 0, right: 0}]}> 14 + <View style={[a.absolute, {top: 8, right: 8}, a.z_50]}> 15 15 <Button 16 16 label={_(msg`Remove attachment`)} 17 17 onPress={onRemove}
+1 -1
src/view/com/composer/GifAltText.tsx
··· 79 79 onPress={control.open} 80 80 style={[ 81 81 a.absolute, 82 - {top: 20, left: 12}, 82 + {top: 8, left: 8}, 83 83 {borderRadius: 6}, 84 84 a.pl_xs, 85 85 a.pr_sm,