Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

remove textfield references from hosting provider

+4 -3
+4 -3
src/components/forms/HostingProvider.tsx
··· 5 5 import {atoms as a, useTheme} from '#/alf' 6 6 import {Globe_Stroke2_Corner0_Rounded as Globe} from '#/components/icons/Globe' 7 7 import {PencilLine_Stroke2_Corner0_Rounded as Pencil} from '#/components/icons/Pencil' 8 - import * as TextField from './TextField' 9 8 import {useDialogControl} from '../Dialog' 10 9 import {Text} from '../Typography' 11 10 import {ServerInputDialog} from '#/view/com/auth/server-input' ··· 49 48 t.atoms.bg_contrast_25, 50 49 ]} 51 50 onPress={onPressSelectService}> 52 - <TextField.Icon icon={Globe} /> 51 + <View style={a.pr_xs}> 52 + <Globe size="md" fill={t.palette.contrast_500} /> 53 + </View> 53 54 <Text style={[a.text_md]}>{toNiceDomain(serviceUrl)}</Text> 54 55 <View 55 56 style={[ ··· 57 58 t.atoms.bg_contrast_100, 58 59 {marginLeft: 'auto', left: 6, padding: 6}, 59 60 ]}> 60 - <Pencil style={{color: t.palette.contrast_500}} /> 61 + <Pencil size="sm" style={{color: t.palette.contrast_500}} /> 61 62 </View> 62 63 </TouchableOpacity> 63 64 </>