Skip to content

Commit

Permalink
Issue #PS-000 fix: Resolved UT issues
Browse files Browse the repository at this point in the history
  • Loading branch information
itsvick committed Sep 24, 2024
1 parent fb5d017 commit 93da80e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/coursePlanner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const getFrameworkDetails = async (frameworkId: string): Promise<any> =>
};

export const uploadCoursePlanner = async (file: File, metaData: CoursePlannerMetaData): Promise<any> => {
const apiUrl: string = `${process.env.NEXT_PUBLIC_BASE_URL}/user/v1/course-planner/upload`;
const apiUrl: string = `${process.env.NEXT_PUBLIC_BASE_URL}/course-planner/upload`;
const formData = new FormData();
formData.append('file', file);
formData.append('metaData', JSON.stringify(metaData));
Expand Down

0 comments on commit 93da80e

Please sign in to comment.