Skip to content

Commit

Permalink
removed console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Nebyt committed Feb 7, 2023
1 parent b52e22a commit 144f452
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion templates/react-asmjs/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ function App() {
const [currentStrValue, setStrValue] = new useState("");

const getBigNumValue = (strValue: string) => {
console.log(strValue);
return BigNum.from_str(strValue)
};

Expand Down
1 change: 0 additions & 1 deletion templates/react-browser/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ function App() {
const [currentStrValue, setStrValue] = new useState("");

const getBigNumValue = (strValue: string) => {
console.log(strValue);
return BigNum.from_str(strValue)
};

Expand Down

0 comments on commit 144f452

Please sign in to comment.