From 032ed41cd01ca37130b9d1145d5fde67f4ca7779 Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Tue, 15 Aug 2023 00:52:16 +0300 Subject: [PATCH] Make cancel match actually clickable --- app/features/sendouq/routes/q.match.$id.tsx | 30 ++++++++++----------- 1 file changed, 15 insertions(+), 15 deletions(-) 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} ); }