From a70d207e4fd5672c5ce6fde5e0285544d8be47cc Mon Sep 17 00:00:00 2001 From: Berend Sliedrecht <61358536+berendsliedrecht@users.noreply.github.com> Date: Wed, 26 Jun 2024 14:06:13 +0200 Subject: [PATCH] fix: test full flows (#115) Signed-off-by: Berend Sliedrecht --- packages/app/src/hooks/useTransparentNavigationBar.tsx | 2 +- packages/app/src/utils/DeeplinkHandler.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/app/src/hooks/useTransparentNavigationBar.tsx b/packages/app/src/hooks/useTransparentNavigationBar.tsx index 7742ceba..86fe04ba 100644 --- a/packages/app/src/hooks/useTransparentNavigationBar.tsx +++ b/packages/app/src/hooks/useTransparentNavigationBar.tsx @@ -1,6 +1,6 @@ import * as NavigationBar from 'expo-navigation-bar' -import { isAndroid } from '../utils' +import { isAndroid } from '../utils/platform' export const useTransparentNavigationBar = () => { if (isAndroid()) { diff --git a/packages/app/src/utils/DeeplinkHandler.tsx b/packages/app/src/utils/DeeplinkHandler.tsx index 8c74fb2d..d027da3c 100644 --- a/packages/app/src/utils/DeeplinkHandler.tsx +++ b/packages/app/src/utils/DeeplinkHandler.tsx @@ -2,12 +2,12 @@ import { useCallback } from 'react' import type { ReactNode } from 'react' import { InvitationQrTypes } from '@package/agent' -import { useCredentialDataHandler } from '@package/app' import { useToastController } from '@package/ui' import { CommonActions } from '@react-navigation/native' import * as Linking from 'expo-linking' import { useNavigation } from 'expo-router' import { useEffect, useState } from 'react' +import { useCredentialDataHandler } from '../hooks' interface DeeplinkHandlerProps { children: ReactNode