Skip to content

Commit 10340db

Browse files
committed
Fix React unescaped entities ESLint error in RelayOwnerConfig
- Replace unescaped quotes with " entities in error message text - Resolves react/no-unescaped-entities warning
1 parent 5bc8dd7 commit 10340db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/allowed-users/components/RelayOwnerConfig/RelayOwnerConfig.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ export const RelayOwnerConfig: React.FC<RelayOwnerConfigProps> = ({
196196

197197
{npubValue && !isValid && (
198198
<S.ErrorText>
199-
Invalid NPUB format. Must start with "npub1" and be 63 characters long.
199+
Invalid NPUB format. Must start with &quot;npub1&quot; and be 63 characters long.
200200
</S.ErrorText>
201201
)}
202202
</S.NpubSection>

0 commit comments

Comments
 (0)