diff --git a/examples/next/src/app/components/Connected.tsx b/examples/next/src/app/components/Connected.tsx index c337bfce..735df42e 100644 --- a/examples/next/src/app/components/Connected.tsx +++ b/examples/next/src/app/components/Connected.tsx @@ -42,8 +42,6 @@ export const Connected = () => { const [lastTxnDataHash, setLastTxnDataHash] = useState() const [lastTxnDataHash2, setLastTxnDataHash2] = useState() - const [confirmationEnabled, setConfirmationEnabled] = useState(localStorage.getItem('confirmationEnabled') === 'true') - const [pendingFeeOptionConfirmation, confirmPendingFeeOption, rejectPendingFeeOption] = useWaasFeeOptions() const [selectedFeeOptionTokenName, setSelectedFeeOptionTokenName] = useState() @@ -404,36 +402,6 @@ export const Connected = () => { )} - {isWaasConnection && ( - - - - Confirmations - - - - { - if (checked) { - localStorage.setItem('confirmationEnabled', 'true') - setConfirmationEnabled(true) - } else { - localStorage.removeItem('confirmationEnabled') - setConfirmationEnabled(false) - } - - await delay(300) - - window.location.reload() - }} - /> - - - - )} -