Skip to content

Commit 6cc3081

Browse files
authored
fix: set data-active attribute to false for download section (#691)
1 parent da96f48 commit 6cc3081

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/download/PlatformDownload.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ function getReleaseLink(releases: PlatformReleases, { os, cpu }: { os: string; c
5858

5959
<div
6060
id={`${platform}-${cpu}-downloads`}
61-
data-active={platform === 'mac'}
61+
data-active={false}
6262
class="platform-section data-[active='false']:hidden"
6363
data-cpu={cpu}
6464
data-platform={platform}

0 commit comments

Comments
 (0)