File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ export const useParseParams = () => {
55 const newParams = {
66 ...params ,
77 mainCategoryIds : params . mainCategoryIds . join ( ',' ) ,
8- categoryIds : params . categoryIds . join ( '' ) ,
8+ categoryIds : params . categoryIds . join ( ', ' ) ,
99 taskStatus : params . taskStatus ?. join ( ',' )
1010 }
1111 return newParams
@@ -15,7 +15,7 @@ export const useParseParams = () => {
1515 const newParams = {
1616 ...params ,
1717 mainCategoryIds : params . mainCategoryIds . join ( ',' ) ,
18- categoryIds : params . categoryIds . join ( '' )
18+ categoryIds : params . categoryIds . join ( ', ' )
1919 }
2020 return newParams
2121 }
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ const fetchRequestList = async () => {
4646 headers: {
4747 Authorization: ` Bearer ${import .meta .env .VITE_ACCESS_TOKEN } `
4848 },
49- params: { ... parsedParams , pageSize: 1 }
49+ params: parsedParams
5050 })
5151 return response .data
5252}
You can’t perform that action at this time.
0 commit comments