Skip to content

Commit

Permalink
fix(url): typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Mihoub2 committed May 17, 2024
1 parent 1afa121 commit 35823f4
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/config/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,5 @@ const API_KEY = import.meta.env.VITE_SCANR_API_AUTHORIZATION;
export const headers = API_KEY ? { Authorization: `Basic ${API_KEY}` } : {};
export const postHeaders = { ...headers, "Content-Type": "application/json" };

export const contributionUrl =
"https://scanr-api.dataesr.ovh/contribute?max_results=2000";
export const contactUrl =
"https://scanr-api.dataesr.ovh/contact?max_results=2000";
export const contributionUrl = "/api/contribute?max_results=2000";
export const contactUrl = "/api/contact?max_results=2000";

0 comments on commit 35823f4

Please sign in to comment.