import React from 'react'; import DisclaimerModal from './disclaimer'; import IconNotAuthenticated from './icons/not-authenticated'; import useDarkMode from '../util/use-dark-mode'; function Error404(props: any) { const directUser = () => { props.history.replace("/"); }; // need this to set the correct theme // eslint-disable-next-line const darkMode = useDarkMode(true); return (

Error

Sorry, something seems to be broken.
Please re-connect to your wallet again.

© 2023 Zilliqa
); } export default Error404;