From 4678a7adfdcebd5c1dc5ddafd0d8914ca756cc2f Mon Sep 17 00:00:00 2001 From: Kshitij Pramod Ghongadi Date: Fri, 17 Jan 2025 13:58:40 +0530 Subject: [PATCH] NTP-29390 | Release 466 | Regression fixes (#14568) --- App/common/hooks/useBottomSheet.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/App/common/hooks/useBottomSheet.tsx b/App/common/hooks/useBottomSheet.tsx index bacbb35183..5a23ac415d 100644 --- a/App/common/hooks/useBottomSheet.tsx +++ b/App/common/hooks/useBottomSheet.tsx @@ -2,7 +2,10 @@ import { useState } from "react"; import { View } from "react-native"; import BaseBottomSheetComponent from "../../../components/bottomsheet/BaseBottomSheetComponent"; import { GenericActionPayload } from "../actions/GenericAction"; -import { BOTTOMSHEET_ANIMATION_DURATION } from "../constants"; +import { + BOTTOMSHEET_ANIMATION_DURATION, + BOTTOMSHEET_DISMISS_ANIMATION_DURATION, +} from "../constants"; import { ModalView } from "../interface/modals/ModalView"; import { clearBottomSheet, setBottomSheetView } from "../utilities/AlfredUtils";