Skip to content

Commit

Permalink
Merge pull request #112 from ensdomains/sig-delegation-hotfix
Browse files Browse the repository at this point in the history
disable gasless delegation for now
  • Loading branch information
LeonmanRolls committed Aug 7, 2024
2 parents 3f566a8 + 2691aa7 commit 20cc129
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/DelegateRanking.js
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ const ChooseYourDelegate = () => {
const { data: chooseData } = useQuery(DELEGATE_RANKING_QUERY);
useGetTokens(address);
useGetDelegatedTo(address);
useGetDelegateBySigStatus(address);
// useGetDelegateBySigStatus(address);
const { delegates, loading: delegatesLoading } = chooseData.delegates;
const { balance, loading: balanceLoading } = chooseData.tokensOwned;
const { delegatedTo, loading: delegatedToLoading } = chooseData.delegatedTo;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/EnteryourDelegate.js
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ const EnteryourDelegate = () => {
}
`);
useGetDelegatedTo(address);
useGetDelegateBySigStatus(address);
// useGetDelegateBySigStatus(address);

const delegateSigDetails = _delegateSigDetails.details;

Expand Down

0 comments on commit 20cc129

Please sign in to comment.