Skip to content

Commit dae3241

Browse files
committed
fix: temp hide delete contact button
1 parent a6ecd3b commit dae3241

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

src/screens/Contacts/Contact.tsx

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import {
1212
CopyIcon,
1313
PencileIcon,
1414
ShareIcon,
15-
TrashIcon,
1615
} from '../../styles/icons';
1716
import NavigationHeader from '../../components/NavigationHeader';
1817
import SafeAreaInset from '../../components/SafeAreaInset';
@@ -171,14 +170,14 @@ const Contact = ({
171170
}}>
172171
<PencileIcon height={20} width={20} color="brand" />
173172
</IconButton>
174-
<IconButton
175-
style={styles.iconButton}
176-
onPress={(): void => {
177-
setShowDialog(true);
178-
}}
179-
testID="DeleteContactButton">
180-
<TrashIcon height={24} width={24} color="brand" />
181-
</IconButton>
173+
{/*<IconButton*/}
174+
{/* style={styles.iconButton}*/}
175+
{/* onPress={(): void => {*/}
176+
{/* setShowDialog(true);*/}
177+
{/* }}*/}
178+
{/* testID="DeleteContactButton">*/}
179+
{/* <TrashIcon height={24} width={24} color="brand" />*/}
180+
{/*</IconButton>*/}
182181
</View>
183182
<ProfileLinks style={styles.links} links={profileLinksWithIds} />
184183

0 commit comments

Comments
 (0)