Skip to content

Commit

Permalink
fix(funke): dependency cycle removed
Browse files Browse the repository at this point in the history
Signed-off-by: Berend Sliedrecht <[email protected]>
  • Loading branch information
Berend Sliedrecht committed Jun 26, 2024
1 parent 31e7f13 commit c2c9045
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/app/src/hooks/useTransparentNavigationBar.tsx
Original file line number Diff line number Diff line change
@@ -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()) {
Expand Down
2 changes: 1 addition & 1 deletion packages/app/src/utils/DeeplinkHandler.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c2c9045

Please sign in to comment.