Skip to content

Commit

Permalink
chore: Removed a space
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaslf97 committed Jan 29, 2025
1 parent 615af81 commit 4bec5da
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/hooks/useFetchFile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const getFetchIniFileAxios = async (
const base = OpenAPI.BASE;

const response = await axios.get(
` /api/downloads/${analogueModel.analogueModelId}/ini`,
`/api/downloads/${analogueModel.analogueModelId}/ini`,
{
headers: { Authorization: `Bearer ${token}` },
responseType: 'blob', // response type of blob to handle images
Expand Down Expand Up @@ -44,7 +44,7 @@ export const getFetchNcFileAxios = async (
const base = OpenAPI.BASE;

const response = await axios.get(
` /api/downloads/${analogueModel.analogueModelId}/nc`,
`/api/downloads/${analogueModel.analogueModelId}/nc`,
{
headers: { Authorization: `Bearer ${token}` },
responseType: 'blob', // response type of blob to handle images
Expand Down Expand Up @@ -80,7 +80,7 @@ export const getFetchResqmlFileAxios = async (
const base = OpenAPI.BASE;

const response = await axios.get(
` /api/downloads/${analogueModel.analogueModelId}/resqml`,
`/api/downloads/${analogueModel.analogueModelId}/resqml`,
{
headers: { Authorization: `Bearer ${token}` },
responseType: 'blob', // response type of blob to handle images
Expand Down

0 comments on commit 4bec5da

Please sign in to comment.