Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/components/features/settings/hackathon-settings-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,16 @@ export function HackathonSettingsForm({ hackathonId }: { hackathonId: string })
placeholder="e.g., March 5th at 11:59 PM (Pacific Time)"
/>
</div>
<div className="space-y-2">
<Label htmlFor="waitlistSignupDeadline">Waitlist Signup Deadline</Label>
<Input
id="waitlistSignupDeadline"
value={getValue("waitlistSignupDeadline")}
onChange={(e) => handleFieldChange("waitlistSignupDeadline", e.target.value)}
disabled={!isEditing}
placeholder="e.g., March 2nd at 11:59 PM (Pacific Time)"
/>
</div>
<div className="space-y-2">
<Label htmlFor="offWaitlistNotify">Off Waitlist Notify</Label>
<Input
Expand Down
1 change: 1 addition & 0 deletions src/lib/firebase/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -612,6 +612,7 @@ export interface HackathonConfig {
submissionsOpen: HackathonBooleanMap;
waiversAndForms: WaiversAndFormsMap;
hackathonTheme: HackathonThemeMap;
waitlistSignupDeadline: HackathonConfigMap;
}

/**
Expand Down