From 71ff2ad44092016630cf543d8c853c27ee1d2ded Mon Sep 17 00:00:00 2001 From: Danish Arora Date: Tue, 15 Jul 2025 14:50:30 +0530 Subject: [PATCH] fix: build --- src/components/Tabs/RunNodeTab/RunNodeTab.tsx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/components/Tabs/RunNodeTab/RunNodeTab.tsx b/src/components/Tabs/RunNodeTab/RunNodeTab.tsx index 8f47a2a..04caa9f 100644 --- a/src/components/Tabs/RunNodeTab/RunNodeTab.tsx +++ b/src/components/Tabs/RunNodeTab/RunNodeTab.tsx @@ -6,10 +6,6 @@ import { TerminalWindow } from '@/components/ui/terminal-window'; import { toast } from '@/components/ui/toast'; import { Copy } from 'lucide-react'; -interface RunNodeTabProps { - tabId?: string; -} - function CodeBlock({ code }: { code: string }) { const handleCopy = () => { navigator.clipboard.writeText(code); @@ -35,7 +31,7 @@ function CodeBlock({ code }: { code: string }) { ); } -export default function RunNodeTab({ tabId: _tabId }: RunNodeTabProps) { +export default function RunNodeTab({ tabId }: { tabId: string }) { const { hasStoredCredentials, storedCredentialsHashes, @@ -75,7 +71,7 @@ export default function RunNodeTab({ tabId: _tabId }: RunNodeTabProps) { }; return ( -
+

How to Run a Waku Node