mirror of
https://github.com/logos-messaging/rln.waku.org.git
synced 2026-01-28 10:53:09 +00:00
fix: build
This commit is contained in:
parent
6e42fd5a14
commit
71ff2ad440
@ -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 (
|
||||
<div className="space-y-8 p-4">
|
||||
<div className="space-y-8 p-4" id={tabId}>
|
||||
<TerminalWindow title="Run a Node" className="mb-8">
|
||||
<h2 className="text-lg font-mono font-medium mb-6">How to Run a Waku Node</h2>
|
||||
<ol className="space-y-8 list-decimal ml-6">
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user