From 39102fdc187d3317efd6296ada780aaf95830dcf Mon Sep 17 00:00:00 2001 From: daledah Date: Mon, 7 Oct 2024 16:52:54 +0700 Subject: [PATCH] fix: unused import --- src/pages/iou/request/step/withFullTransactionOrNotFound.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/iou/request/step/withFullTransactionOrNotFound.tsx b/src/pages/iou/request/step/withFullTransactionOrNotFound.tsx index 5d9894ecb3d6..0ddddf7ff878 100644 --- a/src/pages/iou/request/step/withFullTransactionOrNotFound.tsx +++ b/src/pages/iou/request/step/withFullTransactionOrNotFound.tsx @@ -1,7 +1,7 @@ import type {RouteProp} from '@react-navigation/native'; import {useIsFocused} from '@react-navigation/native'; import type {ComponentType, ForwardedRef, RefAttributes} from 'react'; -import React, {forwardRef, useMemo} from 'react'; +import React, {forwardRef} from 'react'; import {useOnyx} from 'react-native-onyx'; import type {OnyxEntry} from 'react-native-onyx'; import FullPageNotFoundView from '@components/BlockingViews/FullPageNotFoundView';