Skip to content

Commit

Permalink
[Common] [Hotfix] api URL 주소 잘못되어있던 부분 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
suwonthugger committed Nov 10, 2024
1 parent 4ab0898 commit a7a3566
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 35 deletions.
2 changes: 1 addition & 1 deletion apps/mobile/src/shared/apis/school/axios.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const getSchoolUserList = async ({
page,
schoolName,
}: GetSchoolUserList.Params): Promise<GetSchoolUserList.Res> => {
const response = await client.get(SCHOOL_URL.GET_SCHOOL_LIST, {
const response = await client.get(SCHOOL_URL.GET_SCHOOL_USER_LIST, {
params: {
page,
schoolName,
Expand Down
30 changes: 0 additions & 30 deletions apps/web/middleware.ts

This file was deleted.

3 changes: 0 additions & 3 deletions apps/web/next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ const nextConfig = {

return config;
},
experimental: {
middleware: true,
},
images: {
dangerouslyAllowSVG: true, // svg 이미지 허용
contentDispositionType: 'attachment',
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/shared/apis/school/axios.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const getSchoolUserList = async ({
page,
schoolName,
}: GetSchoolUserList.Params): Promise<GetSchoolUserList.Res> => {
const response = await client.get(SCHOOL_URL.GET_SCHOOL_LIST, {
const response = await client.get(SCHOOL_URL.GET_SCHOOL_USER_LIST, {
params: {
page,
schoolName,
Expand Down

0 comments on commit a7a3566

Please sign in to comment.