This repository was archived by the owner on Mar 13, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +18
-0
lines changed
containers/MyGigs/modals/UpdateGigProfile Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -216,6 +216,16 @@ const UpdateGigProfile = ({
216216 </ div >
217217 </ div >
218218 < div styleName = "details" >
219+ { profile && profile . existingResume && (
220+ < div styleName = "resume-details" >
221+ Please upload your resume/CV. Double-check that all of your tech
222+ skills are listed in your resume/CV and add them to the tech
223+ skills section below.
224+ < a href = { profile . existingResume . file_link } >
225+ { profile . existingResume . filename }
226+ </ a >
227+ </ div >
228+ ) }
219229 < div styleName = "resume" >
220230 < FilePicker
221231 label = "Drag & drop your resume or CV here - Please Omit Contact Information"
Original file line number Diff line number Diff line change 118118 .details {
119119 display : flex ;
120120 flex-wrap : wrap ;
121+ .resume-details {
122+ font-size : 14px ;
123+ & > a {
124+ color : blue ;
125+ text-decoration : underline ;
126+ }
127+ }
121128
122129 .resume {
123130 align-self : flex-start ;
Original file line number Diff line number Diff line change @@ -114,6 +114,7 @@ async function getProfile() {
114114 country : profile . country ,
115115 phone : profile . phone ,
116116 file : null ,
117+ existingResume : profile . resume ,
117118 hasProfile : profile . hasProfile ,
118119 status : profile . availability
119120 ? GIG_STATUS . AVAILABLE
You can’t perform that action at this time.
0 commit comments