diff options
-rw-r--r-- | packages/astro/src/transitions/router.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/src/transitions/router.ts b/packages/astro/src/transitions/router.ts index 8c008e209..c4da38c2c 100644 --- a/packages/astro/src/transitions/router.ts +++ b/packages/astro/src/transitions/router.ts @@ -446,7 +446,7 @@ export function navigate(href: string, options?: Options) { if (!navigateOnServerWarned) { // instantiate an error for the stacktrace to show to user. const warning = new Error( - 'The view transtions client API was called during a server side render. This may be unintentional as the navigate() function is expected to be called in response to user interactions. Please make sure that your usage is correct.' + 'The view transitions client API was called during a server side render. This may be unintentional as the navigate() function is expected to be called in response to user interactions. Please make sure that your usage is correct.' ); warning.name = 'Warning'; // eslint-disable-next-line no-console |