completionId: cgen-4a2c4c486a6a4156a146bcfa7e1b7713
cgen-4a2c4c486a6a4156a146bcfa7e1b7713
This commit is contained in:
parent
f4c57a4f2b
commit
1065c2581a
1 changed files with 11 additions and 0 deletions
|
|
@ -53,6 +53,17 @@ export default function NexusDashboard() {
|
|||
const [applicants, setApplicants] = useState<any[]>([]);
|
||||
const [paymentHistory, setPaymentHistory] = useState<any[]>([]);
|
||||
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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue