diff --git a/src/entities/transaction/ui/all-transaction-cancel-prevent-bond.tsx b/src/entities/transaction/ui/all-transaction-cancel-prevent-bond.tsx index 4f63a67..d7c4c21 100644 --- a/src/entities/transaction/ui/all-transaction-cancel-prevent-bond.tsx +++ b/src/entities/transaction/ui/all-transaction-cancel-prevent-bond.tsx @@ -1,12 +1,12 @@ import { IMAGE_ROOT } from '@/shared/constants/common'; import { motion } from 'framer-motion'; export interface AllTransactionCancelPreventBondProps { - preventBondOn: boolean; - setCancelPreventBondOn: (preventBondOn: boolean) => void; + cancelPreventBondOn: boolean; + setCancelPreventBondOn: (cancelPreventBondOn: boolean) => void; }; export const AllTransactionCancelPreventBond = ({ - preventBondOn, + cancelPreventBondOn, setCancelPreventBondOn }: AllTransactionCancelPreventBondProps) => { const onClickToClose = () => { @@ -31,69 +31,64 @@ export const AllTransactionCancelPreventBond = ({ -