Skip to content

Commit

Permalink
Run svelte-migrate for Kit v2 (#218)
Browse files Browse the repository at this point in the history
  • Loading branch information
dimfeld authored and techniq committed Feb 6, 2024
1 parent 6912e84 commit 8a673b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/svelte-ux/src/routes/+layout.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export async function load({ url }) {
if (url.host === 'svelte-ux.vercel.app') {
const newUrl = new URL(url);
newUrl.host = 'svelte-ux.techniq.dev';
throw redirect(302, newUrl.toString());
redirect(302, newUrl.toString());
}

return {
Expand Down

0 comments on commit 8a673b8

Please sign in to comment.