Skip to content

Commit

Permalink
chore(react-native): manual fix of linter reported errors
Browse files Browse the repository at this point in the history
  • Loading branch information
HuiSF committed Mar 4, 2024
1 parent 046e4e6 commit ef7c71f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/react-native/example/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ export default function App() {

React.useEffect(() => {
async function calc() {
const computeModPowResult = await computeModPow(computeModPowPayload);
setComputeModPowResult(computeModPowResult);
const computeSResult = await computeS(computeSPayload);
setComputeSResult(computeSResult);
const modPowResult = await computeModPow(computeModPowPayload);
setComputeModPowResult(modPowResult);
const sResult = await computeS(computeSPayload);
setComputeSResult(sResult);
}
calc();
}, []);
Expand Down

0 comments on commit ef7c71f

Please sign in to comment.