From e9c1d1fb43926306813ca8b664f2f70d0c8f61ec Mon Sep 17 00:00:00 2001 From: philipye314 Date: Tue, 3 Dec 2024 21:15:47 -0800 Subject: [PATCH] small fix --- src/navigation/types.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/navigation/types.tsx b/src/navigation/types.tsx index 384b5c7..f7e7667 100644 --- a/src/navigation/types.tsx +++ b/src/navigation/types.tsx @@ -1,4 +1,4 @@ -import { MaterialBottomTabNavigationProp } from '@react-navigation/material-bottom-tabs'; +import { BottomTabNavigationProp } from '@react-navigation/bottom-tabs'; import { NativeStackScreenProps } from '@react-navigation/native-stack'; import { VideoResource } from '@/types/types'; @@ -43,4 +43,4 @@ export type SeekHelpScreenProps = NativeStackScreenProps; export type BottomTabScreenProps = - MaterialBottomTabNavigationProp; + BottomTabNavigationProp;