Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
wojtekmaj authored Nov 19, 2024
1 parent 842e2ac commit 1bf6048
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apps/site/components/Downloads/DownloadButton/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ const DownloadButton: FC<PropsWithChildren<DownloadButtonProps>> = ({
release: { versionWithPrefix },
children,
}) => {
const { os, bitness: userBitness, architecture: userArchitecture } = useDetectOS();
const {
os,
bitness: userBitness,
architecture: userArchitecture,
} = useDetectOS();
const bitness = getUserBitnessByArchitecture(userArchitecture, userBitness);
const downloadLink = getNodeDownloadUrl(versionWithPrefix, os, bitness);

Expand Down

0 comments on commit 1bf6048

Please sign in to comment.