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
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
.container {
background-color: #f2f2f7;
padding: 24px 20px 0px;
color: var(--text-dark);


h1 {
font-size: 1.75rem;
font-weight: 700;
Expand Down
2 changes: 1 addition & 1 deletion app/(pages)/judges/_components/AuthForms/CheckInForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default function CheckInForm({ id }: any) {
<AuthForm
role="judge"
fields={formFields}
buttonText="Check in"
buttonText="Check in"
initialValues={{
code: '',
opted_into_panels: false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
width: 100%;
height: 60vh;
max-height: 100vh;
background-color: #F2F2F7;
border-radius: var(--b-radius);
display: flex;
flex-direction: column;
Expand Down
2 changes: 1 addition & 1 deletion app/(pages)/judges/_components/AuthForms/RegisterForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export default function RegisterForm({ data }: any) {
<AuthForm
role="judge"
fields={formFields}
buttonText="Next"
buttonText="Next"
initialValues={{
email: data?.email ?? '',
password: '',
Expand Down
3 changes: 1 addition & 2 deletions app/_data/db_validation_data.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
"business",
"aiml",
"hardware",
"design",
"medtech"
"design"
],
"tracks": [
"Best Hack for Social Good",
Expand Down
1 change: 0 additions & 1 deletion scripts/generateData.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ function weightedShuffleSpecialties(specialties) {
aiml: 0.1,
hardware: 0.039,
design: 0.158,
medtech: 0.015,
};
const availableWeighted = specialties.filter(
(s) => weightMap[s.toLowerCase()] !== undefined
Expand Down
Loading