Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,9 @@ pnpm test

## Project Structure

![Codebase Graph](public/Codebase_Graph.png)


```
findAJob/
├── app/ # Next.js app directory (routes, layouts)
Expand Down Expand Up @@ -157,4 +160,4 @@ npm start

---

If you found this project helpful, please consider giving it a star!
If you found this project helpful, please consider giving it a star!
2 changes: 0 additions & 2 deletions app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
import Image from "next/image";

export default function Home() { }
17 changes: 9 additions & 8 deletions components/dashboard/Curriculum.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,6 @@ export default function Curriculum({ selectedApplication }: CurriculumProps) {
);
return;
}
useEffect(() => {
if (!selectedApplication?.curriculumPath) {
setCurriculumUrl("");
return;
}
setIsClient(true);
handleShowCurriculum(selectedApplication.curriculumPath);
}, [selectedApplication]);

const file = await fileRes.blob();

Expand All @@ -63,6 +55,15 @@ export default function Curriculum({ selectedApplication }: CurriculumProps) {
}
};

useEffect(() => {
if (!selectedApplication?.curriculumPath) {
setCurriculumUrl("");
return;
}
setIsClient(true);
handleShowCurriculum(selectedApplication.curriculumPath);
}, [selectedApplication]);

const downloadCV = async (username: string, url: string) => {
const a = document.createElement("a");
a.href = url;
Expand Down
Binary file added public/Codebase_Graph.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.