From 03242c6c2259dc583b21c12ad60109ac72aa9d52 Mon Sep 17 00:00:00 2001 From: Martin Trapp Date: Mon, 26 Feb 2024 16:06:09 +0000 Subject: [PATCH] [ci] format --- packages/astro/components/ViewTransitions.astro | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/astro/components/ViewTransitions.astro b/packages/astro/components/ViewTransitions.astro index 97bf62096a..c33d9a3f5f 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;