This commit is contained in:
NextJS
2026-05-11 04:30:39 +00:00
parent 0f6e979aac
commit b2be61190f
13 changed files with 1361 additions and 6 deletions
+3 -1
View File
@@ -32,7 +32,9 @@ export async function updateUserCcRc(formData: FormData) {
? "players"
: tabRaw === "matchmaker"
? "matchmaker"
: "dashboard";
: tabRaw === "ledger"
? "ledger"
: "dashboard";
const highlightRaw = String(formData.get("highlightId") ?? "").trim();
const participantRaw = String(formData.get("participantRaw") ?? "").trim();
const highlightId = highlightRaw === "" ? null : highlightRaw;