Skip to content

Commit

Permalink
fix: login/register ui fix
Browse files Browse the repository at this point in the history
  • Loading branch information
goto-eof committed May 1, 2023
1 parent 2901642 commit f00bf45
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
14 changes: 12 additions & 2 deletions src/Main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -206,9 +206,19 @@ export default function Main() {
)}
{!isAuthenticated() && (
<>
<span onClick={() => navigate('/authenticate')}>Login</span>
<span
onClick={() => navigate('/authenticate')}
style={{ padding: 4, cursor: 'pointer' }}
>
Login
</span>
{' | '}
<span onClick={() => navigate('/register')}>Register</span>
<span
style={{ padding: 4, cursor: 'pointer' }}
onClick={() => navigate('/register')}
>
Register
</span>
</>
)}
</Flex>
Expand Down
1 change: 0 additions & 1 deletion src/components/job/JobOffersRequests.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ export default function JobOffersRequests({
title,
status,
}: Props) {
console.log(status);
const BASE_URL_RETRIEVE_ITEMS: string =
status !== undefined
? `api/v1/job/${scope}/admin/${type}/${status}`
Expand Down

0 comments on commit f00bf45

Please sign in to comment.