File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import LanguageDropdown from './LanguageDropdown'
44import eosIcon from '../assets/images/user-story-logo.svg'
55import SocialMediaLinks from '../components/SocialMediaLinks'
66import { EOS_COPYRIGHT } from 'eos-icons-react'
7+ import { Link } from '@reach/router'
78export const AuthWrapper = ( { children } ) => {
89 return (
910 < div className = 'authentication-wrapper' >
@@ -43,7 +44,9 @@ export const AuthRightContainer = ({ children, logo }) => {
4344 < div className = 'container-right' >
4445 < div className = 'flex flex-row flex-space-between' >
4546 < div className = 'image image-logo eos-logo-resize' >
46- < img src = { logo ?? eosIcon } alt = 'EOS Logo' />
47+ < Link className = 'link' data-cy = 'nav-eos-logo' to = '/' >
48+ < img className = 'logo' src = { eosIcon } alt = 'EOS Logo' />
49+ </ Link >
4750 </ div >
4851 < LanguageDropdown translator = { i18n } />
4952 </ div >
You can’t perform that action at this time.
0 commit comments