Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
quiet-node committed Sep 11, 2023
1 parent 05148cd commit 821dea9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/system-dapp-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,9 @@ jobs:
cd ./system-contract-dapp-playground
npm install
npm run build
if npm run lint -- --quiet; then
echo "No warnings found"
else
echo "Warnings found in the code"
exit 1 # Exit with a non-zero status code to fail the CI check
fi
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export const useToastSuccessful = ({
setCurrentTransactionPage,
setNonFungibleParamValues,
initialTokenAddressesValues,
setTokenTransferParamValues,
// setTokenTransferParamValues,
setCryptoTransferParamValues,
]);
};

0 comments on commit 821dea9

Please sign in to comment.