Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
user.name committed Sep 10, 2024
1 parent 6b40459 commit e340fc4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/learn/standard-detection.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ const myUPContract = new ethers.Contract(
const result = await myUPContract.getData(SupportedStandards.LSP3Profile.key);

// Verify if the metadata standard is supported
const supportsLSP3Metadata = result.value == SupportedStandards.LSP3Profile.value;
const supportsLSP3Metadata =
result.value == SupportedStandards.LSP3Profile.value;

console.log(supportsLSP3Metadata); // true or false
```
Expand Down

0 comments on commit e340fc4

Please sign in to comment.