Skip to content

Commit

Permalink
fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
pedronfigueiredo committed Mar 14, 2024
1 parent 5e1717e commit 4e79fcf
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,9 @@ const watchAssets = document.getElementById('watchAssets');
const transferTokens = document.getElementById('transferTokens');
const transferFromTokens = document.getElementById('transferFromTokens');
const approveTokens = document.getElementById('approveTokens');
const increaseTokenAllowance = document.getElementById('increaseTokenAllowance');
const increaseTokenAllowance = document.getElementById(
'increaseTokenAllowance',
);
const transferTokensWithoutGas = document.getElementById(
'transferTokensWithoutGas',
);
Expand Down Expand Up @@ -1704,7 +1706,7 @@ const initializeFormElements = () => {
transferTokens.disabled = false;
transferFromTokens.disabled = false;
approveTokens.disabled = false;
increaseTokenAllowance.disabled = false
increaseTokenAllowance.disabled = false;
transferTokensWithoutGas.disabled = false;
approveTokensWithoutGas.disabled = false;
approveTokensToInput.disabled = false;
Expand Down

0 comments on commit 4e79fcf

Please sign in to comment.