diff --git a/app/components/Views/confirmations/Confirm/Confirm.tsx b/app/components/Views/confirmations/Confirm/Confirm.tsx index 1ec625b4457..914bb3ffcbf 100644 --- a/app/components/Views/confirmations/Confirm/Confirm.tsx +++ b/app/components/Views/confirmations/Confirm/Confirm.tsx @@ -3,12 +3,13 @@ import { Text, View } from 'react-native'; import BottomModal from '../../../../components/UI/BottomModal'; import { useTheme } from '../../../../util/theme'; -import useRedesignEnabled from '../hooks/useRedesignEnabled'; +import Footer from '../components/Confirm/Footer'; +import useConfirmationRedesignEnabled from '../hooks/useConfirmationRedesignEnabled'; import createStyles from './style'; const Confirm = () => { const { colors } = useTheme(); - const { isRedesignedEnabled } = useRedesignEnabled(); + const { isRedesignedEnabled } = useConfirmationRedesignEnabled(); if (!isRedesignedEnabled) { return null; @@ -20,6 +21,7 @@ const Confirm = () => { TODO +