From 18dc978e3e76803b2da1fe0cb1c786445ef8f04a Mon Sep 17 00:00:00 2001 From: Allison Lee Date: Mon, 3 Aug 2026 15:28:34 -0400 Subject: [PATCH] MATCHING_PREFERENCES shortened --- js/src/features/sign-up/components/SignUpForm.tsx | 6 +++--- js/src/features/sign-up/components/signUpFormConfig.ts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/js/src/features/sign-up/components/SignUpForm.tsx b/js/src/features/sign-up/components/SignUpForm.tsx index 4aeb074..76da1ac 100644 --- a/js/src/features/sign-up/components/SignUpForm.tsx +++ b/js/src/features/sign-up/components/SignUpForm.tsx @@ -2,7 +2,7 @@ import { memberProfileSchema } from "@/features/member-profile/api/schemas"; import { MemberProfileValues } from "@/features/member-profile/types"; import { INDUSTRIES, - MATCHING_PREFERENCES, + MATCH_PREFS, } from "@/features/sign-up/components/signUpFormConfig"; import { Alert, @@ -20,7 +20,7 @@ import { import { useState } from "react"; // Options for select fields. Defined in SignUpFormConfig -const matchingPreferenceOptions = MATCHING_PREFERENCES.map((v) => ({ +const matchPrefOptions = MATCH_PREFS.map((v) => ({ value: v, label: v, })); @@ -218,7 +218,7 @@ export function SignUpForm() {