Skip to content

Commit

Permalink
remove ability to create events
Browse files Browse the repository at this point in the history
  • Loading branch information
BenKurrek committed Dec 11, 2024
1 parent 3ac8fcb commit 5ea10a9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/features/create-drop/routes/CreateTicketDropPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,10 @@ export default function NewTicketDrop() {
return formData.tickets.length < 1;
}

if (currentStep === 4) {
return true;
}

return false;
};

Expand Down Expand Up @@ -506,7 +510,7 @@ export default function NewTicketDrop() {
isLoading={isSettingKey}
onClick={nextStep}
>
{currentStep === formSteps.length - 1 ? 'Create event' : 'Next'}
{currentStep === formSteps.length - 1 ? 'Coming Soon' : 'Next'}
</Button>
</HStack>
</HStack>
Expand Down

0 comments on commit 5ea10a9

Please sign in to comment.