diff --git a/app/components/Views/SDKFeedbackModal/SDKFeedbackModal.tsx b/app/components/Views/SDKFeedbackModal/SDKFeedbackModal.tsx index 17bce2ccb6d..ac5b854e31d 100644 --- a/app/components/Views/SDKFeedbackModal/SDKFeedbackModal.tsx +++ b/app/components/Views/SDKFeedbackModal/SDKFeedbackModal.tsx @@ -1,21 +1,23 @@ -import SDKFeedback from '../../../../app/components/UI/SDKFeedback'; +// Third party dependencies import React, { useRef } from 'react'; -import SheetBottom, { - SheetBottomRef, -} from '../../../component-library/components/Sheet/SheetBottom'; +// External dependencies +import SDKFeedback from '../../../components/UI/SDKFeedback'; +import BottomSheet, { + BottomSheetRef, +} from '../../../component-library/components/BottomSheets/BottomSheet'; const SDKLoadingModal = () => { - const sheetRef = useRef(null); + const sheetRef = useRef(null); return ( - + { - sheetRef.current?.hide(); + sheetRef.current?.onCloseBottomSheet(); }} /> - + ); };