From e340fc42eddc916c3079e2afff3d61886bfd8d5d Mon Sep 17 00:00:00 2001 From: "user.name" Date: Tue, 10 Sep 2024 08:29:24 +0300 Subject: [PATCH] lint fix --- docs/learn/standard-detection.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/learn/standard-detection.md b/docs/learn/standard-detection.md index b167cc6c8..551d77fcc 100644 --- a/docs/learn/standard-detection.md +++ b/docs/learn/standard-detection.md @@ -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 ```