You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
conststart=getArrayItemOrThrow(starts,i,'start date response')
262
275
return{
263
-
'Years of TypeScript experience': years[i],
264
-
'Preferred frontend framework': frameworks[i],
265
-
'Describe a challenging technical problem you solved recently': problems[i],
266
-
'Link to your GitHub profile or portfolio': `https://github.com/${CANDIDATES_DATA[candidateIndex].firstName.toLowerCase()}${CANDIDATES_DATA[candidateIndex].lastName.toLowerCase().replace(/['\s]/g,'')}`,
267
-
'When can you start?': starts[i],
276
+
'Years of TypeScript experience': year,
277
+
'Preferred frontend framework': framework,
278
+
'Describe a challenging technical problem you solved recently': problem,
279
+
'Link to your GitHub profile or portfolio': `https://github.com/${candidate.firstName.toLowerCase()}${candidate.lastName.toLowerCase().replace(/['\s]/g,'')}`,
280
+
'When can you start?': start,
268
281
}
269
282
}
270
283
if(jobIndex===1){
@@ -276,10 +289,12 @@ function generateResponses(jobIndex: number, candidateIndex: number): Record<str
276
289
'I believe in rapid prototyping. Quick sketches → Figma prototypes → guerrilla testing → iteration. Speed of learning beats perfection.',
constprocess=getArrayItemOrThrow(processes,i,'design process response')
279
294
return{
280
-
'Link to your portfolio': `https://dribbble.com/${CANDIDATES_DATA[candidateIndex].firstName.toLowerCase()}${CANDIDATES_DATA[candidateIndex].lastName.toLowerCase().charAt(0)}`,
281
-
'Primary design tool': tools[i],
282
-
'Walk us through your design process for a recent project': processes[i],
295
+
'Link to your portfolio': `https://dribbble.com/${candidate.firstName.toLowerCase()}${candidate.lastName.toLowerCase().charAt(0)}`,
296
+
'Primary design tool': tool,
297
+
'Walk us through your design process for a recent project': process,
283
298
'I have experience with design systems': candidateIndex%2===0,
284
299
}
285
300
}
@@ -288,10 +303,13 @@ function generateResponses(jobIndex: number, candidateIndex: number): Record<str
0 commit comments