diff options
author | Mo Tarbin <mhed.t91@gmail.com> | 2024-07-07 19:48:34 -0400 |
---|---|---|
committer | Mo Tarbin <mhed.t91@gmail.com> | 2024-07-07 19:48:34 -0400 |
commit | c4bf06b11cb5e8ebb1e7ed2ecc7bfeded0cfc42f (patch) | |
tree | 8124e4c3bba6f98b893d95cbcd86f203c2fb1847 /src/views/Authorization | |
parent | 45deaf476fd513cbaab2379a08a1d5de67d4d5bb (diff) | |
download | donetick-frontend-c4bf06b11cb5e8ebb1e7ed2ecc7bfeded0cfc42f.tar.gz donetick-frontend-c4bf06b11cb5e8ebb1e7ed2ecc7bfeded0cfc42f.tar.bz2 donetick-frontend-c4bf06b11cb5e8ebb1e7ed2ecc7bfeded0cfc42f.zip |
Add a date when having repeatable frequency type, Fix logo bug
Diffstat (limited to '')
-rw-r--r-- | src/views/Authorization/ForgotPasswordView.jsx | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/views/Authorization/ForgotPasswordView.jsx b/src/views/Authorization/ForgotPasswordView.jsx index 44601eb..f964a68 100644 --- a/src/views/Authorization/ForgotPasswordView.jsx +++ b/src/views/Authorization/ForgotPasswordView.jsx @@ -1,4 +1,5 @@ // create boilerplate for ResetPasswordView: +import LogoSVG from '@/assets/logo.svg' import { Box, Button, @@ -12,7 +13,6 @@ import { } from '@mui/joy' import { useState } from 'react' import { useNavigate } from 'react-router-dom' - import { API_URL } from './../../Config' const ForgotPasswordView = () => { @@ -105,12 +105,7 @@ const ForgotPasswordView = () => { }} > <Box> - <img - src='/src/assets/logo.svg' - alt='logo' - width='128px' - height='128px' - /> + <img src={LogoSVG} alt='logo' width='128px' height='128px' /> {/* <Logo /> */} <Typography level='h2'> Done |