diff --git a/src/ageAssurance/components/NoAccessScreen.tsx b/src/ageAssurance/components/NoAccessScreen.tsx
index 1f50fa9821..79926b46ae 100644
--- a/src/ageAssurance/components/NoAccessScreen.tsx
+++ b/src/ageAssurance/components/NoAccessScreen.tsx
@@ -216,53 +216,50 @@ export function NoAccessScreen() {
. This estimate may be inaccurate if you're
using a VPN.
- {' '}
- {IS_NATIVE && (
- <>
-
- You can also{' '}
- {
- locationControl.open()
- })}
- style={[textStyles]}>
- tap here to update your location with GPS.
-
-
-
- {
- const access =
- computeAgeAssuranceRegionAccess(
- props.geolocation,
- )
- if (access !== aa.Access.Full) {
- props.disableDialogAction()
- props.setDialogError(
- _(
- msg`We're sorry, but based on your device's location, you are currently located in a region that requires age assurance.`,
- ),
- )
- } else {
- props.closeDialog(() => {
- // set this after close!
- setDeviceGeolocation(
- props.geolocation,
- )
- Toast.show(
- _(msg`Thanks! You're all set.`),
- {
- type: 'success',
- },
- )
- })
- }
- }}
- />
- >
- )}
+
+ >
+ )}
+ {IS_NATIVE && (
+ <>
+ {' '}
+ {
+ locationControl.open()
+ })}
+ style={[textStyles]}>
+
+ Tap here to update your location via GPS.
+
+
+ {
+ const access =
+ computeAgeAssuranceRegionAccess(
+ props.geolocation,
+ )
+ if (access !== aa.Access.Full) {
+ props.disableDialogAction()
+ props.setDialogError(
+ _(
+ msg`We're sorry, but based on your device's location, you are currently located in a region that requires age assurance.`,
+ ),
+ )
+ } else {
+ props.closeDialog(() => {
+ // set this after close!
+ setDeviceGeolocation(props.geolocation)
+ Toast.show(
+ _(msg`Thanks! You're all set.`),
+ {
+ type: 'success',
+ },
+ )
+ })
+ }
+ }}
+ />
>
)}