From c76aa03c169098140f1aa287e7e487657e066240 Mon Sep 17 00:00:00 2001 From: JSoufer Date: Thu, 11 Jul 2024 09:24:55 +0100 Subject: [PATCH] chore: add code fence to avoid ts issue --- app/components/Nav/App/index.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/app/components/Nav/App/index.js b/app/components/Nav/App/index.js index 79af8053345..fedc38be4e6 100644 --- a/app/components/Nav/App/index.js +++ b/app/components/Nav/App/index.js @@ -6,7 +6,13 @@ import React, { useState, } from 'react'; import { CommonActions, NavigationContainer } from '@react-navigation/native'; -import { Animated, Linking, View } from 'react-native'; +import { + Animated, + Linking, + ///: BEGIN:ONLY_INCLUDE_IF(preinstalled-snaps,external-snaps) + View, + ///: END:ONLY_INCLUDE_IF +} from 'react-native'; import { createStackNavigator } from '@react-navigation/stack'; import Login from '../../Views/Login'; import QRScanner from '../../Views/QRScanner';