Skip to content

Commit c975beb

Browse files
fix: resolve linting errors in HelpModal component
- Remove unused Filter import - Fix unescaped entities by replacing apostrophes and quotes with HTML entities - All linting errors resolved
1 parent 8bab4c4 commit c975beb

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/app/_components/HelpModal.tsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import { useState } from 'react';
44
import { Button } from './ui/button';
5-
import { HelpCircle, Server, Settings, RefreshCw, Package, HardDrive, FolderOpen, Search, Filter, Download } from 'lucide-react';
5+
import { HelpCircle, Server, Settings, RefreshCw, Package, HardDrive, FolderOpen, Search, Download } from 'lucide-react';
66

77
interface HelpModalProps {
88
isOpen: boolean;
@@ -63,7 +63,7 @@ export function HelpModal({ isOpen, onClose, initialSection = 'server-settings'
6363
<h4 className="font-medium text-foreground mb-2">Server Color Coding</h4>
6464
<p className="text-sm text-muted-foreground">
6565
Assign colors to servers for visual distinction throughout the application.
66-
This helps identify which server you're working with when managing scripts.
66+
This helps identify which server you&apos;re working with when managing scripts.
6767
This needs to be enabled in the General Settings.
6868
</p>
6969
</div>
@@ -100,7 +100,7 @@ export function HelpModal({ isOpen, onClose, initialSection = 'server-settings'
100100
<h4 className="font-medium text-foreground mb-2">Server Color Coding</h4>
101101
<p className="text-sm text-muted-foreground">
102102
Enable visual color coding for servers throughout the application.
103-
This makes it easier to identify which server you're working with.
103+
This makes it easier to identify which server you&apos;re working with.
104104
</p>
105105
</div>
106106

@@ -110,7 +110,7 @@ export function HelpModal({ isOpen, onClose, initialSection = 'server-settings'
110110
Add a GitHub Personal Access Token to increase API rate limits and improve performance.
111111
</p>
112112
<ul className="text-sm text-muted-foreground space-y-1">
113-
<li>• Bypasses GitHub's rate limiting for unauthenticated requests</li>
113+
<li>• Bypasses GitHub&apos;s rate limiting for unauthenticated requests</li>
114114
<li>• Improves script loading and syncing performance</li>
115115
<li>• Token is stored securely and only used for API calls</li>
116116
</ul>
@@ -233,7 +233,7 @@ export function HelpModal({ isOpen, onClose, initialSection = 'server-settings'
233233
<div className="p-4 border border-border rounded-lg">
234234
<h4 className="font-medium text-foreground mb-2">What Are Downloaded Scripts?</h4>
235235
<p className="text-sm text-muted-foreground mb-2">
236-
These are scripts that you've downloaded from the repository and are stored locally on your system.
236+
These are scripts that you&apos;ve downloaded from the repository and are stored locally on your system.
237237
</p>
238238
<ul className="text-sm text-muted-foreground space-y-1">
239239
<li>• Script files are stored in your local scripts directory</li>
@@ -366,9 +366,9 @@ export function HelpModal({ isOpen, onClose, initialSection = 'server-settings'
366366
<div>
367367
<h5 className="font-medium text-foreground mb-2">Automatic Update (Recommended)</h5>
368368
<ul className="text-sm text-muted-foreground space-y-1">
369-
<li>• Click the "Update Now" button when an update is available</li>
369+
<li>• Click the &quot;Update Now&quot; button when an update is available</li>
370370
<li>• The system will handle everything automatically</li>
371-
<li>• You'll see a progress overlay with update logs</li>
371+
<li>• You&apos;ll see a progress overlay with update logs</li>
372372
<li>• The page will reload automatically when complete</li>
373373
</ul>
374374
</div>
@@ -411,7 +411,7 @@ export function HelpModal({ isOpen, onClose, initialSection = 'server-settings'
411411
Click the external link icon next to the update button to view detailed release notes on GitHub.
412412
</p>
413413
<ul className="text-sm text-muted-foreground space-y-1">
414-
<li>• See what's new in each version</li>
414+
<li>• See what&apos;s new in each version</li>
415415
<li>• Read about bug fixes and improvements</li>
416416
<li>• Check for any breaking changes</li>
417417
<li>• View installation requirements</li>

0 commit comments

Comments
 (0)