Skip to content

Commit

Permalink
remove url suffix in fetching data
Browse files Browse the repository at this point in the history
  • Loading branch information
gkoch78 committed Dec 18, 2024
1 parent bd3bd3f commit 09e29f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/client-theoriq/src/alphaDataSource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export class AlphaDataSource {
return this.getMessageForMock()
}

const response = await axios.get(`${this.dataServiceUrl}/cookie/get-all`);
const response = await axios.get(`${this.dataServiceUrl}`);
if (response.status == 204) {
return undefined
}
Expand Down

0 comments on commit 09e29f4

Please sign in to comment.