Skip to content

Commit

Permalink
Remove "< 1.3" in version data if it is missing
Browse files Browse the repository at this point in the history
  • Loading branch information
PassTheMayo committed Oct 20, 2024
1 parent 6ea2cbe commit 58e4837
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/StatusTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export default function StatusTable({ status, protocolVersions, className = '',
? status.version.name_raw === status.version.name_clean || status.version.name
? <span>{status.version.name_clean ?? status.version.name}</span>
: <MinecraftFormatted html={status.version.name_html} />
: <span className="text-neutral-500 dark:text-neutral-400">N/A (&lt; 1.3)</span>
: <span className="text-neutral-500 dark:text-neutral-400">N/A</span>
]
);

Expand Down

0 comments on commit 58e4837

Please sign in to comment.