File tree 2 files changed +8
-6
lines changed
app/(authenticated)/profile/edit
2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ export default function EditProfileForm({
44
44
updateUser,
45
45
} : EditProfileFormProps ) {
46
46
const [ profilePicturePreview , setProfilePicturePreview ] = useState < string > (
47
- user . img ,
47
+ user . img
48
48
) ;
49
49
const {
50
50
control,
@@ -277,7 +277,7 @@ export default function EditProfileForm({
277
277
{ errors . contacts ?. linkedin ?. message }
278
278
</ span >
279
279
< span className = "text-gray-600 text-sm block" >
280
- Don' t know how to find it?
280
+ Don' t know how to find it?
281
281
< a
282
282
href = "https://www.linkedin.com/help/linkedin/answer/a522735"
283
283
className = "text-link"
@@ -375,8 +375,10 @@ export default function EditProfileForm({
375
375
>
376
376
< option value = "" > Choose an option</ option >
377
377
< option value = "Associate degree" > Associate degree</ option >
378
- < option value = "Bachelor's degree" > Bachelor's degree</ option >
379
- < option value = "Master's degree" > Master's degree</ option >
378
+ < option value = "Bachelor's degree" >
379
+ Bachelor's degree
380
+ </ option >
381
+ < option value = "Master's degree" > Master's degree</ option >
380
382
< option value = "Doctoral degree" > Doctoral degree</ option >
381
383
< option value = "Other" > Other</ option >
382
384
</ select >
Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ type User = {
30
30
degree : string ;
31
31
field : string ;
32
32
grade ?: string ;
33
- start ? : string ;
34
- end ? : string ;
33
+ start : string ;
34
+ end : string ;
35
35
} [ ] ;
36
36
mail ?: string ;
37
37
bearer ?:
You can’t perform that action at this time.
0 commit comments