diff --git a/app/features/sendouq/routes/q.match.$id.tsx b/app/features/sendouq/routes/q.match.$id.tsx index f2e2b1e79..d60dc22cb 100644 --- a/app/features/sendouq/routes/q.match.$id.tsx +++ b/app/features/sendouq/routes/q.match.$id.tsx @@ -409,21 +409,6 @@ export default function QMatchPage() { isResubmission={ownTeamReported} fetcher={submitScoreFetcher} /> - {isAdmin(user) && !data.match.reportedByUserId ? ( - - - - ) : null} {submitScoreFetcher.data?.error === "different" ? (
You reported different results than your opponent. Double check @@ -433,6 +418,21 @@ export default function QMatchPage() { ) : null} ) : null} + {isAdmin(user) && !data.match.reportedByUserId ? ( + + + + ) : null} ); }