Skip to content

Commit

Permalink
feat(web-app): update resume route to fetch specific resume
Browse files Browse the repository at this point in the history
The resume route in the web-app module has been updated to fetch a
specific resume called 'schema-resume/update-experience-bettermarks'
instead of the default one. It's now more flexible when dealing with
different resumes.

Signed-off-by: Giovanni Ravalico <15946771+suddenlyGiovanni@users.noreply.github.com>
  • Loading branch information
suddenlyGiovanni committed May 22, 2024
1 parent 7967867 commit 62e45a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/app/routes/resume/route.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const links: LinksFunction = () => {
export const loader = loaderFunction(
() =>
Effect.gen(function* () {
const { resume, meta } = yield* ResumeRepository.getResume()
const { resume, meta } = yield* ResumeRepository.getResume('schema-resume/update-experience-bettermarks')
return json({ resume, meta })
}),
// still need to handle the error cases here!!
Expand Down

0 comments on commit 62e45a9

Please sign in to comment.