From c7dbb9d5c08c77fa8b964a972f23c6bf10118956 Mon Sep 17 00:00:00 2001 From: Arsh Date: Fri, 12 Jan 2024 20:35:23 +0000 Subject: [PATCH] [ci] format --- packages/astro/components/ViewTransitions.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/astro/components/ViewTransitions.astro b/packages/astro/components/ViewTransitions.astro index 5c7ffc8df362..05911fca7df4 100644 --- a/packages/astro/components/ViewTransitions.astro +++ b/packages/astro/components/ViewTransitions.astro @@ -54,7 +54,7 @@ const { fallback = 'animate' } = Astro.props; document.addEventListener('click', (ev) => { let link = ev.target; if (ev.composed) { - link = ev.composedPath()[0]; + link = ev.composedPath()[0]; } if (link instanceof Element) { link = link.closest('a, area');