Skip to content

Commit

Permalink
refactor(web): remove extra line
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhilverma360 committed May 28, 2024
1 parent fb71bf4 commit a769bbb
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ const InputDisplay: React.FC<IInputDisplay> = ({

const { id } = useParams();
const { address } = useAccount();

const { data: balance } = useReadPnkBalanceOf({
query: {
enabled: !isUndefined(address),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ const useCalculateJurorOdds = (
const JurorBalanceDisplay = () => {
const { id } = useParams();
const { address } = useAccount();

const { data: jurorBalance } = useReadSortitionModuleGetJurorBalance({
query: {
enabled: !isUndefined(address),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ const StakeWithdrawButton: React.FC<IActionButton> = ({
const { id } = useParams();
const { address } = useAccount();
const { data: courtDetails } = useCourtDetails(id);

const { data: balance } = useReadPnkBalanceOf({
query: {
enabled: !isUndefined(address),
Expand Down

0 comments on commit a769bbb

Please sign in to comment.