This commit is contained in:
2021-10-27 13:57:49 -03:00
parent 605ad41198
commit 463dfc62dd
3 changed files with 9 additions and 5 deletions

View File

@@ -35,8 +35,8 @@ function App() {
<Route path="/credits-page">
<Credits />
<Footer />
<Credits />
<Footer />
</Route>
@@ -54,7 +54,7 @@ function App() {
</Route>
<Route path='/demo-admin-place'>
<Route path='/admin-place/demo'>
<DemoControlPanel />

View File

@@ -141,7 +141,7 @@ const Form = () => {
: null
}
<AditionalText text={`Don't remember your password?`} link={'/password-recovery'}/>
<AditionalText text={'Admin place demo look'} link={'/demo-admin-place'}/>
<AditionalText text={'Admin place demo look'} link={'/admin-place/demo'}/>
</div>
)

View File

@@ -15,7 +15,11 @@ const AdminHeader = (props) => {
Back to the Game
</button>
<AccountPreview />
{
!props.demo ?
<AccountPreview />
: null
}
</header>
)
}