Skip to content

Commit

Permalink
Display correct badge for system
Browse files Browse the repository at this point in the history
  • Loading branch information
whscullin committed May 18, 2024
1 parent ab2d482 commit eb13db5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion js/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ export const Header = ({ e }: HeaderProps) => {
return (
<div className={styles.header}>
<a href={README} rel="noreferrer" target="_blank">
<img src="img/badge.png" className={styles.badge} />
<img
src={e ? 'img/badge2e.png' : 'img/badge.png'}
className={styles.badge}
/>
</a>
<div className={styles.subtitle}>
An Apple {e ? '//e' : ']['} Emulator in JavaScript
Expand Down

0 comments on commit eb13db5

Please sign in to comment.