diff --git a/src/layouts/EnvoiLayout.tsx b/src/layouts/EnvoiLayout.tsx index 9437d7e..45abae0 100644 --- a/src/layouts/EnvoiLayout.tsx +++ b/src/layouts/EnvoiLayout.tsx @@ -210,6 +210,7 @@ const EnvoiLayout: React.FC = ({ children }) => { ); const [refreshTrigger, setRefreshTrigger] = useState(0); const [paymentModalOpen, setPaymentModalOpen] = useState(false); + const [allowNonVoiPayments, setAllowNonVoiPayments] = useState(false); const dispatch = useDispatch(); const paymentAssetSymbol = useSelector( (state: RootState) => state.user.paymentMethod @@ -1335,8 +1336,12 @@ const EnvoiLayout: React.FC = ({ children }) => { }} > VOI - {/*aUSDC*/} - UNIT + {allowNonVoiPayments && ( + <> + aUSDC + UNIT + + )}