diff --git a/web/account/log-in-form.react.js b/web/account/log-in-form.react.js --- a/web/account/log-in-form.react.js +++ b/web/account/log-in-form.react.js @@ -8,7 +8,7 @@ import css from './log-in-form.css'; import SIWEButton from './siwe-button.react.js'; -import SIWE from './siwe.react.js'; +import SIWELoginForm from './siwe-login-form.react.js'; import TraditionalLoginForm from './traditional-login-form.react.js'; function LoginForm(): React.Node { @@ -27,7 +27,7 @@ let siweSection; if (isDev && siweAuthFlowSelected && signer) { - siweSection = ; + siweSection = ; } else if (isDev) { siweSection = ; } diff --git a/web/account/siwe.react.js b/web/account/siwe-login-form.react.js rename from web/account/siwe.react.js rename to web/account/siwe-login-form.react.js --- a/web/account/siwe.react.js +++ b/web/account/siwe-login-form.react.js @@ -37,7 +37,7 @@ const getSIWENonceLoadingStatusSelector = createLoadingStatusSelector( getSIWENonceActionTypes, ); -function SIWE(): React.Node { +function SIWELoginForm(): React.Node { const { address } = useAccount(); const { data: signer } = useSigner(); const dispatch = useDispatch(); @@ -146,4 +146,4 @@ ); } -export default SIWE; +export default SIWELoginForm;