Skip to content

Commit 34ac1d0

Browse files
authored
fix(sandbox): use link to new sandbox (#13101)
* point to new sandbox * fix link in admin 404 page
1 parent 9409e2a commit 34ac1d0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

apps/changelog/src/app/changelog/%5Fadmin/[id]/edit/page.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export default async function ChangelogCreatePage(props: {
2828
<h2>Changelog not found</h2>
2929
</header>
3030
<footer>
31-
<Link href="/changelogs">Return to Changelogs list</Link>
31+
<Link href="/changelog/_admin">Return to Changelogs list</Link>
3232
</footer>
3333
</Fragment>
3434
);

apps/changelog/src/client/components/navbar.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ const NAV_ITEMS: NavItemsProps[] = [
501501
id: 'sandbox',
502502
title: 'Sandbox',
503503
type: 'a',
504-
to: 'https://try.sentry-demo.com/demo/start/',
504+
to: 'https://sandbox.sentry.io/',
505505
target: '_blank',
506506
variant: 'ghost',
507507
className: '',

src/components/header.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export function Header({
7777
)}
7878
<div className="hidden lg-xl:flex justify-end flex-1 gap-6 items-center min-w-fit">
7979
<NavLink href="https://sentry.io/changelog/">Changelog</NavLink>
80-
<NavLink href="https://try.sentry-demo.com/demo/start/">Sandbox</NavLink>
80+
<NavLink href="https://sandbox.sentry.io/">Sandbox</NavLink>
8181
<NavLink href="https://sentry.io/">Go to Sentry</NavLink>
8282
<NavLink
8383
href="https://sentry.io/signup/"

src/components/mobileMenu/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export function MobileMenu({pathname, searchPlatforms}: Props) {
4646
<Link href="https://sentry.io/changelog/">Changelog</Link>
4747
</li>
4848
<li className={styles.MenuItem}>
49-
<Link href="https://try.sentry-demo.com/demo/start/">Sandbox</Link>
49+
<Link href="https://sandbox.sentry.io/">Sandbox</Link>
5050
</li>
5151
<li className={styles.MenuItem}>
5252
<Link href="https://sentry.io/">Go to Sentry</Link>

0 commit comments

Comments
 (0)