We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7626313 commit 00d0469Copy full SHA for 00d0469
1 file changed
client/src/services/seb-server/api-services/institutionService.ts
@@ -4,7 +4,15 @@ import { Institution } from "@/models/seb-server/institution";
4
const baseUrl = "/info" as const;
5
6
export const getInstitutions = async (): Promise<Institution[]> =>
7
- (await apiService.getRequestWithoutAuth(`${baseUrl}/institution`)).data;
+ (
8
+ await apiService
9
+ .getApiForManualRequests()
10
+ .get(`${baseUrl}/institution`, {
11
+ headers: {
12
+ "Content-Type": "application/x-www-form-urlencoded",
13
+ },
14
+ })
15
+ ).data;
16
17
export const getInstitutionLogo = async (
18
institutionSuffix: string,
0 commit comments