Skip to content

Commit

Permalink
update desktop tool download buttons with new macos links
Browse files Browse the repository at this point in the history
  • Loading branch information
ndepaola committed Aug 6, 2024
1 parent f2e265b commit c55089a
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions frontend/src/features/export/finishedMyProjectModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ function PlatformDownload({
platformName,
icon,
}: {
downloadURLSuffix: "windows.exe" | "macos" | "linux";
downloadURLSuffix: "windows.exe" | "macos-intel" | "macos-arm" | "linux";
platformName: string;
icon: string;
}) {
Expand Down Expand Up @@ -144,21 +144,28 @@ function DesktopToolDownload() {
!
</p>
<Row gap={2}>
<Col sm={4}>
<Col sm={3}>
<PlatformDownload
platformName="Windows"
downloadURLSuffix="windows.exe"
icon="windows"
/>
</Col>
<Col sm={4}>
<Col sm={3}>
<PlatformDownload
platformName="macOS"
downloadURLSuffix="macos"
platformName="macOS — Intel"
downloadURLSuffix="macos-intel"
icon="apple"
/>
</Col>
<Col sm={4}>
<Col sm={3}>
<PlatformDownload
platformName="macOS — ARM"
downloadURLSuffix="macos-arm"
icon="apple"
/>
</Col>
<Col sm={3}>
<PlatformDownload
platformName="Linux"
downloadURLSuffix="linux"
Expand Down

0 comments on commit c55089a

Please sign in to comment.