Skip to content

Commit

Permalink
fix: multiple refreshs when auto_login=false
Browse files Browse the repository at this point in the history
  • Loading branch information
igorrCarvalho authored and anovazzi1 committed Jul 18, 2024
1 parent 53cb3c2 commit 1c66dce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const useGetApiKeysQuery: useQueryFunctionType<
const { query } = UseRequestProcessor();

const getApiKeysFn = async () => {
return await api.get<IApiQueryResponse>(`${getURL("API_KEY")}`);
return await api.get<IApiQueryResponse>(`${getURL("API_KEY")}/`);
};

const responseFn = async () => {
Expand Down

0 comments on commit 1c66dce

Please sign in to comment.