client downloads - fix download link for legacy clients

This commit is contained in:
Nuwan 2025-05-27 06:54:27 +05:30
parent 676cbaa656
commit ad1d8ea373
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ const JKDownloadsLegacy = () => {
const downloadLink = React.useMemo(() => {
if (!currentOS) return null
return downloads[`JamClient/${currentOS}`]
return downloads[`JamClient/${selectedPlatform}`]
}, [currentOS]);
const selectPlatform = (platform) => {