Skip to content

Commit

Permalink
Fix bug where apple buttons are missing from full list (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
johngribbin authored May 21, 2024
1 parent 1f495e4 commit 5627999
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion src/lib/components/shared/Downloads.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,20 @@
href: string
isFirst: boolean
icon: string
}[] = []
}[] = [
{
os: 'Silicon',
href: `${CRAB_NEBULA_URL}/dmg-aarch64`,
isFirst: os === 'macos-arm',
icon: AppleIcon
},
{
os: 'Intel',
href: `${CRAB_NEBULA_URL}/dmg-x86_64`,
isFirst: os === 'macos-intel',
icon: AppleIcon
}
]
const comingSoonDownloads = [
{
Expand Down

0 comments on commit 5627999

Please sign in to comment.