Skip to content

Commit

Permalink
update parameter in requests
Browse files Browse the repository at this point in the history
  • Loading branch information
deadit committed Mar 5, 2024
1 parent c04b13d commit d4f212d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/hooks/useGoldBank.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { useAxios } from '../utils/axios';
export const useGoldBank = () => {
const [requestState, runRequest] = useAxios<any>(
{
url: `${applicationConfig.dexybankUrl}/gold/bank?unconfirmed=1`,
url: `${applicationConfig.dexybankUrl}/gold/bank?ui=1`,
method: 'GET',
},
{ useCache: false },
Expand Down
2 changes: 1 addition & 1 deletion src/hooks/useGoldBuyback.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { useAxios } from '../utils/axios';
export const useGoldBuyback = () => {
const [requestState, runRequest] = useAxios<any>(
{
url: `${applicationConfig.dexybankUrl}/gold/buyback?unconfirmed=1`,
url: `${applicationConfig.dexybankUrl}/gold/buyback?ui=1`,
method: 'GET',
},
{ useCache: false },
Expand Down
2 changes: 1 addition & 1 deletion src/hooks/useGoldMintArbitrage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { useAxios } from '../utils/axios';
export const useGoldMintArbitrage = () => {
const [requestState, runRequest] = useAxios<any>(
{
url: `${applicationConfig.dexybankUrl}/gold/mint/arbitrage?unconfirmed=1`,
url: `${applicationConfig.dexybankUrl}/gold/mint/arbitrage?ui=1`,
method: 'GET',
},
{ useCache: false },
Expand Down
2 changes: 1 addition & 1 deletion src/hooks/useGoldMintFree.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { useAxios } from '../utils/axios';
export const useGoldMintFree = () => {
const [requestState, runRequest] = useAxios<any>(
{
url: `${applicationConfig.dexybankUrl}/gold/mint/free?unconfirmed=1`,
url: `${applicationConfig.dexybankUrl}/gold/mint/free?ui=1`,
method: 'GET',
},
{ useCache: false },
Expand Down

0 comments on commit d4f212d

Please sign in to comment.