Show developer info if it isn't null and move buttons down to the bottom of box in installs/games menu

This commit is contained in:
2025-12-20 20:19:12 -07:00
parent 2e1cd07b99
commit bc1ca2a2b1
4 changed files with 9 additions and 20 deletions

View File

@@ -83,7 +83,10 @@ export default function VersionInfo () {
/>
<p>{gameInfo?.verified ? 'Verified' : 'Unverified'}</p>
</div>
<div className='entry-info-item btntheme2' hidden={gameInfo?.official}>
<div
className='entry-info-item btntheme2'
hidden={gameInfo?.developer == null}
>
<FontAwesomeIcon icon={faCode} color='lightgray' />
<p>Developer: {gameInfo?.developer}</p>
</div>