From 1065c2581ad574bd4f5724567d6bcd0ce41f2165 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sat, 15 Nov 2025 16:44:31 +0000 Subject: [PATCH] completionId: cgen-4a2c4c486a6a4156a146bcfa7e1b7713 cgen-4a2c4c486a6a4156a146bcfa7e1b7713 --- client/pages/dashboards/NexusDashboard.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/client/pages/dashboards/NexusDashboard.tsx b/client/pages/dashboards/NexusDashboard.tsx index 6c00f59e..f36d6907 100644 --- a/client/pages/dashboards/NexusDashboard.tsx +++ b/client/pages/dashboards/NexusDashboard.tsx @@ -53,6 +53,17 @@ export default function NexusDashboard() { const [applicants, setApplicants] = useState([]); const [paymentHistory, setPaymentHistory] = useState([]); const [loading, setLoading] = useState(true); + const [savingProfile, setSavingProfile] = useState(false); + const [profileFormData, setProfileFormData] = useState({ + headline: "", + bio: "", + experience_level: "intermediate", + hourly_rate: "", + availability_status: "available", + availability_hours_per_week: "", + skills: [] as string[], + }); + const [newSkill, setNewSkill] = useState(""); useEffect(() => { if (!authLoading && user) {