Skip to content

Commit e345331

Browse files
committed
fix: resolve ESLint unescaped entity errors
- Replace unescaped apostrophes with ' in JSX text - Fixes react/no-unescaped-entities lint errors in both layouts
1 parent e53d010 commit e345331

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/relay-settings/layouts/DesktopLayout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ export const DesktopLayout: React.FC<DesktopLayoutProps> = ({
133133
{t('common.allowUnregisteredKinds')}
134134
</h4>
135135
<p style={{ margin: 0, fontSize: '0.9rem', color: '#c5d3e0' }}>
136-
Enable this to allow events with kind numbers that don't have specific handlers in the relay.
136+
Enable this to allow events with kind numbers that don&apos;t have specific handlers in the relay.
137137
</p>
138138
{allowUnregisteredKinds && (
139139
<div style={{

src/components/relay-settings/layouts/MobileLayout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ export const MobileLayout: React.FC<MobileLayoutProps> = ({
124124
{t('common.allowUnregisteredKinds')}
125125
</h4>
126126
<p style={{ margin: 0, fontSize: '0.85rem', color: '#c5d3e0' }}>
127-
Enable this to allow events with kind numbers that don't have specific handlers in the relay.
127+
Enable this to allow events with kind numbers that don&apos;t have specific handlers in the relay.
128128
</p>
129129
</div>
130130

0 commit comments

Comments
 (0)