Skip to content

Commit

Permalink
remove relative links in home page
Browse files Browse the repository at this point in the history
  • Loading branch information
matyson committed May 23, 2024
1 parent 2734f37 commit b46d3bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/deepsirius-ui/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ const SessionOptions: React.FC = () => {
<StyledLink href={'/'} onClick={() => void signIn(undefined)}>
Sign in
</StyledLink>
<StyledLink href={'/dive'}>Documentation</StyledLink>
<StyledLink href={'https://deepsirius.lnls.br/dive'}>Documentation</StyledLink>
</>
);

return (
<>
<StyledLink href={user.route}>Workspaces</StyledLink>
<StyledLink href={'/dive'}>Documentation</StyledLink>
<StyledLink href={'https://deepsirius.lnls.br/dive'}>Documentation</StyledLink>
</>
);
};
Expand Down

0 comments on commit b46d3bb

Please sign in to comment.