Generally behaving after refactor + claude

This commit is contained in:
Jack Kingsman
2026-01-19 16:26:33 -08:00
parent 52319a8863
commit 5feec085f7
8 changed files with 1194 additions and 1497 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -13,7 +13,7 @@
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="manifest" href="/site.webmanifest" />
<script type="module" crossorigin src="/assets/index-B7TRWRoH.js"></script>
<script type="module" crossorigin src="/assets/index-C_gPG-ZT.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-tIXvIK_l.css">
</head>
<body>
-1
View File
@@ -724,7 +724,6 @@ export function App() {
<VisualizerView
packets={rawPackets}
contacts={contacts}
channels={channels}
config={config}
/>
) : activeConversation.type === 'raw' ? (
File diff suppressed because it is too large Load Diff
+2 -5
View File
@@ -1,5 +1,5 @@
import { useState } from 'react';
import type { Contact, RawPacket, Channel, RadioConfig } from '../types';
import type { Contact, RawPacket, RadioConfig } from '../types';
import { PacketVisualizer } from './PacketVisualizer';
import { RawPacketList } from './RawPacketList';
import { Tabs, TabsContent, TabsList, TabsTrigger } from './ui/tabs';
@@ -9,11 +9,10 @@ import { cn } from '@/lib/utils';
interface VisualizerViewProps {
packets: RawPacket[];
contacts: Contact[];
channels: Channel[];
config: RadioConfig | null;
}
export function VisualizerView({ packets, contacts, channels, config }: VisualizerViewProps) {
export function VisualizerView({ packets, contacts, config }: VisualizerViewProps) {
const [fullScreen, setFullScreen] = useState(false);
return (
@@ -42,7 +41,6 @@ export function VisualizerView({ packets, contacts, channels, config }: Visualiz
<PacketVisualizer
packets={packets}
contacts={contacts}
channels={channels}
config={config}
/>
</TabsContent>
@@ -64,7 +62,6 @@ export function VisualizerView({ packets, contacts, channels, config }: Visualiz
<PacketVisualizer
packets={packets}
contacts={contacts}
channels={channels}
config={config}
/>
</div>