Wizard: Update docs after move to new preview

`/preview` is no longer used in url.
This commit is contained in:
regexowl 2024-08-01 12:25:56 +02:00 committed by Klara Simickova
parent 37dfe8584c
commit 933e65d590
7 changed files with 8 additions and 30 deletions

View file

@ -11,11 +11,8 @@ import {
selectPackages,
selectRecommendedRepositories,
} from '../../../../store/wizardSlice';
import { useGetEnvironment } from '../../../../Utilities/useGetEnvironment';
import { betaPath } from '../../utilities/betaPath';
const ManageRepositoriesButton = () => {
const { isBeta } = useGetEnvironment();
return (
<Button
component="a"
@ -24,7 +21,7 @@ const ManageRepositoriesButton = () => {
iconPosition="right"
isInline
icon={<ExternalLinkAltIcon />}
href={betaPath(CONTENT_URL, isBeta())}
href={CONTENT_URL}
>
Create and manage repositories here
</Button>