diff options
-rw-r--r-- | packages/astro/components/ViewTransitions.astro | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/astro/components/ViewTransitions.astro b/packages/astro/components/ViewTransitions.astro index 97bf62096..c33d9a3f5 100644 --- a/packages/astro/components/ViewTransitions.astro +++ b/packages/astro/components/ViewTransitions.astro @@ -52,7 +52,9 @@ const { fallback = 'animate' } = Astro.props; if (supportsViewTransitions || getFallback() !== 'none') { if (import.meta.env.DEV && window.matchMedia('(prefers-reduced-motion)').matches) { - console.warn(`[transitions]: all view transition animations, including fallback animation, are disabled as this device has the prefer-reduced-motion setting enabled.`); + console.warn( + `[transitions]: all view transition animations, including fallback animation, are disabled as this device has the prefer-reduced-motion setting enabled.` + ); } document.addEventListener('click', (ev) => { let link = ev.target; |