Skip to content

Commit b65519d

Browse files
chore: fix getting-started folder name on redirect
1 parent 82c07e6 commit b65519d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/routes/+page.server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { redirect } from '@sveltejs/kit';
22

33
export function load() {
4-
throw redirect(307, '/tutorial/getting-started-order');
4+
throw redirect(307, '/tutorial/getting-started');
55
}

src/routes/tutorial/+page.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { redirect } from '@sveltejs/kit';
22

33
export function load() {
4-
throw redirect(307, '/tutorial/getting-started-order');
4+
throw redirect(307, '/tutorial/getting-started');
55
}

src/routes/tutorial/[slug]/+page.server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export function entries() {
88

99
export async function load({ params }) {
1010
if (params.slug === 'local-transitions') {
11-
throw redirect(307, '/tutorial/getting-started-order');
11+
throw redirect(307, '/tutorial/getting-started');
1212
}
1313

1414
const exercise = await get_exercise(params.slug);

0 commit comments

Comments
 (0)