Fix beta banner to not go to docs/beta and instead go to /

This commit is contained in:
James Ketr 2025-07-08 14:02:47 -07:00
parent 4a7a72812f
commit fbe0bd98c7
2 changed files with 2 additions and 2 deletions

View File

@ -653,7 +653,7 @@ const Header: React.FC<HeaderProps> = (props: HeaderProps) => {
<Beta
sx={{ left: '-90px', '& .mobile': { right: '-72px' } }}
onClick={(): void => {
navigate('/docs/beta');
navigate('/');
}}
/>
</StyledAppBar>

View File

@ -221,7 +221,7 @@ const BetaPage: React.FC<BetaPageProps> = ({
},
}}
onClick={(): void => {
navigate('/docs/beta');
navigate('/');
}}
/>
</Box>