Skip to content

Commit 9b6fd9d

Browse files
authored
Merge pull request #165 from Developer-DAO/fix/lesson-4-on-mobile
Ensure snippet so it doesn't break the mobile view
2 parents 71ae63c + 8e210d8 commit 9b6fd9d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lessons/projects/4.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -186,13 +186,13 @@ with that of your contract.
186186

187187
For example, since our contract is using Solidity `0.8.12`:
188188

189-
```
190-
require("@nomicfoundation/hardhat-toolbox");
191-
require('dotenv').config();
189+
```javascript
190+
require('@nomicfoundation/hardhat-toolbox')
191+
require('dotenv').config()
192192

193193
module.exports = {
194-
solidity: "0.8.12",
195-
};
194+
solidity: '0.8.12',
195+
}
196196
```
197197

198198
## What do we want to test on our TierNFT contract?

0 commit comments

Comments
 (0)