]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/components/rounds/Item.js
dark mode
[alttp.git] / resources / js / components / rounds / Item.js
index c318eb7910d3347b771f5101969f1416c12fff90..6eb3d9446809a34d8eac6711f65f5031bc709720 100644 (file)
@@ -49,8 +49,8 @@ const Item = ({
                <p className="seed">
                        {round.code ?
                                <>
-                                       <SeedCode code={round.code} />
-                                       {' '}
+                                       <SeedCode code={round.code} game={round.game || 'alttpr'} />
+                                       <br />
                                </>
                        : null}
                        <SeedButton
@@ -78,6 +78,7 @@ Item.propTypes = {
        round: PropTypes.shape({
                code: PropTypes.arrayOf(PropTypes.string),
                created_at: PropTypes.string,
+               game: PropTypes.string,
                locked: PropTypes.bool,
                number: PropTypes.number,
                seed: PropTypes.string,