We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 36bd981 + d5607c7 commit 7ac85bbCopy full SHA for 7ac85bb
src/api/saramin/route.ts
@@ -31,7 +31,7 @@ export async function fetchJobs(
31
params: FetchJobsParams,
32
): Promise<{ jobs: Job[]; totalPages: number }> {
33
try {
34
- const response = await axios.get<JobResponse>(`${baseUrl}job-info`, { params });
+ const response = await axios.get<JobResponse>(`${baseUrl}/job-info`, { params });
35
return {
36
jobs: response.data.data.content,
37
totalPages: response.data.data.totalPages,
0 commit comments