mirror of
https://github.com/mosip/inji-wallet.git
synced 2026-01-10 05:58:01 -05:00
Solved merge conflicts
This commit is contained in:
committed by
Sri Kanth Kola
parent
fa98ba798e
commit
eca5dbad39
@@ -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('');
|
||||
};
|
||||
|
||||
@@ -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';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user