Skip to content

Commit

Permalink
[UI] Hide wine and install info for browser apps (Heroic-Games-Launch…
Browse files Browse the repository at this point in the history
…er#3153)

Hide wine and install info for browser apps
  • Loading branch information
arielj authored Oct 23, 2023
1 parent 657ebbd commit 63cc832
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,15 @@ const InstalledInfo = ({ gameInfo }: Props) => {
folder_name
} = gameInfo

if (installPlatform === 'Browser') {
return (
<div style={{ textTransform: 'capitalize' }}>
<b>{t('info.installedPlatform', 'Installed Platform')}:</b>{' '}
{installPlatform}
</div>
)
}

let install_path: string | undefined
let install_size: string | undefined
let version: string | undefined
Expand Down

0 comments on commit 63cc832

Please sign in to comment.