react-native-timacare 1.0.16 → 1.0.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -224,7 +224,13 @@ export const Step6 = observer(function Step6() {
224
224
  }}
225
225
  >
226
226
  <IConCamera />
227
- <MText style={{ color: '#FF8E4F', marginLeft: 2 }}>
227
+ <MText
228
+ style={{
229
+ color: '#FF8E4F',
230
+ marginLeft: 2,
231
+ fontSize: 12,
232
+ }}
233
+ >
228
234
  Chụp lại mặt trước
229
235
  </MText>
230
236
  </TouchableOpacity>
@@ -280,7 +286,13 @@ export const Step6 = observer(function Step6() {
280
286
  }}
281
287
  >
282
288
  <IConCamera />
283
- <MText style={{ color: '#FF8E4F', marginLeft: 2 }}>
289
+ <MText
290
+ style={{
291
+ color: '#FF8E4F',
292
+ marginLeft: 2,
293
+ fontSize: 12,
294
+ }}
295
+ >
284
296
  Chụp lại mặt sau
285
297
  </MText>
286
298
  </TouchableOpacity>
@@ -595,6 +607,7 @@ export const Step6 = observer(function Step6() {
595
607
  onPress={() => {
596
608
  if (step === 1) {
597
609
  setStep(2);
610
+ setShowModal(false);
598
611
  navigation.push(ScreenNames.Camera, {
599
612
  front: false,
600
613
  callback: (photo) => {
@@ -611,6 +624,7 @@ export const Step6 = observer(function Step6() {
611
624
  });
612
625
  digitalLendingStore.uploadCavet(formData, () => {
613
626
  setBackPhoto(photo);
627
+ setShowModal(true);
614
628
  });
615
629
  },
616
630
  });