Skip to content

Commit

Permalink
removed comments
Browse files Browse the repository at this point in the history
  • Loading branch information
yashlm committed Jul 11, 2024
1 parent 45660e7 commit 3fe398c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion callbacks/student/rc/resume.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export interface ResumeResponse {

export interface ResumeBackendParams {
resume: string;
resume_type: string; // Include resume_type here
resume_type: string;
}

interface nullBool {
Expand Down
2 changes: 1 addition & 1 deletion pages/student/rc/[rcid]/resume.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ function Resume() {

const formData = new FormData();
formData.append("file", fileSaved);
formData.append("resumeType", resumeType); // Add the resumeType to the form data
formData.append("resumeType", resumeType);

try {
await resumeRequest.post(formData, token, rid);
Expand Down

0 comments on commit 3fe398c

Please sign in to comment.