Skip to content

Commit

Permalink
remove unconfirmed parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
deadit committed Feb 21, 2024
1 parent 420b18f commit c04b13d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/hooks/useGold101.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { useAxios } from '../utils/axios';
export const useGold101 = () => {
const [requestState, runRequest] = useAxios<any>(
{
url: `${applicationConfig.dexybankUrl}/gold/tracking101Box?unconfirmed=1`,
url: `${applicationConfig.dexybankUrl}/gold/tracking101Box`,
method: 'GET',
},
{ useCache: false },
Expand Down
2 changes: 1 addition & 1 deletion src/hooks/useGoldLp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { useAxios } from '../utils/axios';
export const useGoldLp = () => {
const [requestState, runRequest] = useAxios<any>(
{
url: `${applicationConfig.dexybankUrl}/gold/lp?unconfirmed=1`,
url: `${applicationConfig.dexybankUrl}/gold/lp`,
method: 'GET',
},
{ useCache: false },
Expand Down
2 changes: 1 addition & 1 deletion src/hooks/useGoldOracle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { useAxios } from '../utils/axios';
export const useGoldOracle = () => {
const [requestState, runRequest] = useAxios<any>(
{
url: `${applicationConfig.dexybankUrl}/gold/oracle?unconfirmed=1`,
url: `${applicationConfig.dexybankUrl}/gold/oracle`,
method: 'GET',
},
{ useCache: false },
Expand Down

0 comments on commit c04b13d

Please sign in to comment.