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.

Fixes quote post not showing up in quote post composer (#315) (#318)

authored by

John Fawcett and committed by
GitHub
30c54aa2 c50a20d2

+11 -3
+1 -1
src/lib/icons.tsx
··· 420 420 size = 24, 421 421 strokeWidth = 1.5, 422 422 }: { 423 - style?: StyleProp<ViewStyle> 423 + style?: StyleProp<TextStyle> 424 424 size?: string | number 425 425 strokeWidth: number 426 426 }) {
+1 -1
src/view/com/modals/Repost.tsx
··· 29 29 <View style={[s.flex1, pal.view, styles.container]}> 30 30 <View style={s.pb20}> 31 31 <TouchableOpacity style={[styles.actionBtn]} onPress={onRepost}> 32 - <RepostIcon strokeWidth={2} size={24} /> 32 + <RepostIcon strokeWidth={2} size={24} style={s.blue3} /> 33 33 <Text type="title-lg" style={[styles.actionBtnLabel, pal.text]}> 34 34 {!isReposted ? 'Repost' : 'Undo repost'} 35 35 </Text>
+8 -1
src/view/shell/Composer.web.tsx
··· 9 9 ({ 10 10 active, 11 11 replyTo, 12 + quote, 12 13 onPost, 13 14 onClose, 14 15 }: { 15 16 active: boolean 16 17 winHeight: number 17 18 replyTo?: ComposerOpts['replyTo'] 19 + quote: ComposerOpts['quote'] 18 20 onPost?: ComposerOpts['onPost'] 19 21 onClose: () => void 20 22 }) => { ··· 30 32 return ( 31 33 <View style={styles.mask}> 32 34 <View style={[styles.container, pal.view]}> 33 - <ComposePost replyTo={replyTo} onPost={onPost} onClose={onClose} /> 35 + <ComposePost 36 + replyTo={replyTo} 37 + quote={quote} 38 + onPost={onPost} 39 + onClose={onClose} 40 + /> 34 41 </View> 35 42 </View> 36 43 )
+1
src/view/shell/index.web.tsx
··· 33 33 onClose={() => store.shell.closeComposer()} 34 34 winHeight={0} 35 35 replyTo={store.shell.composerOpts?.replyTo} 36 + quote={store.shell.composerOpts?.quote} 36 37 onPost={store.shell.composerOpts?.onPost} 37 38 /> 38 39 <ModalsContainer />