Skip to content

Commit 7ac85bb

Browse files
authored
Merge pull request #152 from ITZipProject/main
env 관련 오류 수정
2 parents 36bd981 + d5607c7 commit 7ac85bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/saramin/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export async function fetchJobs(
3131
params: FetchJobsParams,
3232
): Promise<{ jobs: Job[]; totalPages: number }> {
3333
try {
34-
const response = await axios.get<JobResponse>(`${baseUrl}job-info`, { params });
34+
const response = await axios.get<JobResponse>(`${baseUrl}/job-info`, { params });
3535
return {
3636
jobs: response.data.data.content,
3737
totalPages: response.data.data.totalPages,

0 commit comments

Comments
 (0)