Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default async function ChangelogCreatePage(props: {
<h2>Changelog not found</h2>
</header>
<footer>
<Link href="/changelogs">Return to Changelogs list</Link>
<Link href="/changelog/_admin">Return to Changelogs list</Link>
</footer>
</Fragment>
);
Expand Down
2 changes: 1 addition & 1 deletion apps/changelog/src/client/components/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ const NAV_ITEMS: NavItemsProps[] = [
id: 'sandbox',
title: 'Sandbox',
type: 'a',
to: 'https://try.sentry-demo.com/demo/start/',
to: 'https://sandbox.sentry.io/',
target: '_blank',
variant: 'ghost',
className: '',
Expand Down
2 changes: 1 addition & 1 deletion src/components/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export function Header({
)}
<div className="hidden lg-xl:flex justify-end flex-1 gap-6 items-center min-w-fit">
<NavLink href="https://sentry.io/changelog/">Changelog</NavLink>
<NavLink href="https://try.sentry-demo.com/demo/start/">Sandbox</NavLink>
<NavLink href="https://sandbox.sentry.io/">Sandbox</NavLink>
<NavLink href="https://sentry.io/">Go to Sentry</NavLink>
<NavLink
href="https://sentry.io/signup/"
Expand Down
2 changes: 1 addition & 1 deletion src/components/mobileMenu/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export function MobileMenu({pathname, searchPlatforms}: Props) {
<Link href="https://sentry.io/changelog/">Changelog</Link>
</li>
<li className={styles.MenuItem}>
<Link href="https://try.sentry-demo.com/demo/start/">Sandbox</Link>
<Link href="https://sandbox.sentry.io/">Sandbox</Link>
</li>
<li className={styles.MenuItem}>
<Link href="https://sentry.io/">Go to Sentry</Link>
Expand Down
Loading