]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/components/pages/Tournament.js
show ropunds in reverse order
[alttp.git] / resources / js / components / pages / Tournament.js
index 90f7d038c3718612d5051dcf9453abbb79e14fe8..a5c43caf01f604055b1c077a08862fe7766f24b9 100644 (file)
@@ -44,7 +44,7 @@ const Tournament = () => {
                                if (e.round) {
                                        setTournament(tournament => ({
                                                ...tournament,
-                                               rounds: [...tournament.rounds, e.round],
+                                               rounds: [e.round, ...tournament.rounds],
                                        }));
                                }
                        })