From c0be06f754be208be79e28eed1052573dd38ff0a Mon Sep 17 00:00:00 2001 From: nwjgit <69014816+nwjgit@users.noreply.github.com> Date: Sun, 27 Oct 2024 05:15:57 -0500 Subject: [PATCH] Fix cox repeat trip (#6137) --- src/lib/util/repeatStoredTrip.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/util/repeatStoredTrip.ts b/src/lib/util/repeatStoredTrip.ts index 129d1a4b18..c7f564e604 100644 --- a/src/lib/util/repeatStoredTrip.ts +++ b/src/lib/util/repeatStoredTrip.ts @@ -538,7 +538,7 @@ export const tripHandlers = { cox: { start: { challenge_mode: data.challengeMode, - max_team_size: data.maxSizeInput, + type: data.users.length === 1 ? 'solo' : 'mass', quantity: data.quantity } }