From a2c86f9f0ef31ecedad19a29cbb20534a69d0f09 Mon Sep 17 00:00:00 2001 From: Adam Setch Date: Thu, 5 Dec 2024 08:31:41 -0500 Subject: [PATCH] feat(lighthouse): increase alternate download tap targets Signed-off-by: Adam Setch --- src/components/LatestRelease.astro | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/components/LatestRelease.astro b/src/components/LatestRelease.astro index 18050b1..9c5ce72 100644 --- a/src/components/LatestRelease.astro +++ b/src/components/LatestRelease.astro @@ -118,17 +118,17 @@ const { downloadLinks, version, releaseDate } = await loadInitialData(); ))} -
-

+

+
Latest version: {version} -

-

Released on: {releaseDate}

+
+
Released on: {releaseDate}
{downloadLinks.alt.length > 0 && ( -

+

Also available on:

    {downloadLinks.alt.map((platform) => ( -
  • +
  • {platform.name} @@ -153,7 +153,7 @@ const { downloadLinks, version, releaseDate } = await loadInitialData();
-
Couldn't get latest version.
+
Couldn't retrieve latest version.
)