[WEB-1319] fix: handled issue filters mutation and updated the useParams with useSearchParams (#4473)

* chore: updated issue filters in space

* chore: persisting the query params even when we switch layouts

---------

Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
This commit is contained in:
guru_sainath 2024-05-16 13:07:47 +05:30 committed by GitHub
parent 8ecc461fb1
commit 2bf2e98b00
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
37 changed files with 594 additions and 493 deletions

View file

@ -29,7 +29,7 @@ export abstract class APIService {
}
get(url: string, params = {}) {
return this.axiosInstance.get(url, { params });
return this.axiosInstance.get(url, params);
}
post(url: string, data: any, config = {}) {