Solved merge conflicts

This commit is contained in:
anil_majji
2023-02-10 13:47:34 +05:30
committed by Sri Kanth Kola
parent fa98ba798e
commit eca5dbad39
2 changed files with 22 additions and 1 deletions

View File

@@ -21,6 +21,27 @@ export const MyVcsTab: React.FC<HomeScreenTabProps> = (props) => {
controller.GET_VC();
};
const [isLabelVisible, setIsLabelVisible] = useState(false);
const toggleContent = () => setIsLabelVisible(!isLabelVisible);
const DowmloadingLabel: React.FC = () => {
return (
<Column style={{ display: isLabelVisible ? 'flex' : 'none' }}>
<Row align="space-between" style={Theme.Styles.downloadingIdTag}>
<Text align="left" size="smaller" weight="semibold" color="white">
{t('downloadingIdTag')}
</Text>
<Icon
name="close"
color={Theme.Colors.whiteText}
size={18}
onPress={toggleContent}
/>
</Row>
</Column>
);
};
const clearIndividualId = () => {
GET_INDIVIDUAL_ID('');
};

View File

@@ -4,7 +4,7 @@ import {
GOOGLE_NEARBY_MESSAGES_API_KEY,
} from 'react-native-dotenv';
export const HOST = MIMOTO_HOST;
export const HOST = 'https://api.dev.mosip.net/residentmobileapp';
export const MY_VCS_STORE_KEY = 'myVCs';