Skip to content

Commit 2563b21

Browse files
fix: Resolve ESLint errors in DownloadedScriptsTab
- Fix unescaped apostrophe in empty state message - Fix empty arrow function by adding proper comment structure
1 parent 5f14810 commit 2563b21

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/app/_components/DownloadedScriptsTab.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ export function DownloadedScriptsTab() {
291291
</svg>
292292
<p className="text-lg font-medium">No downloaded scripts found</p>
293293
<p className="text-sm text-muted-foreground mt-1">
294-
You haven't downloaded any scripts yet. Visit the Available Scripts tab to download some scripts.
294+
You haven&apos;t downloaded any scripts yet. Visit the Available Scripts tab to download some scripts.
295295
</p>
296296
</div>
297297
</div>
@@ -402,7 +402,9 @@ export function DownloadedScriptsTab() {
402402
script={scriptData?.success ? scriptData.script : null}
403403
isOpen={isModalOpen}
404404
onClose={handleCloseModal}
405-
onInstallScript={() => {}} // Downloaded scripts don't need installation
405+
onInstallScript={() => {
406+
// Downloaded scripts don't need installation
407+
}}
406408
/>
407409
</div>
408410
</div>

0 commit comments

Comments
 (0)