feat: Complete Pi Harness Rebuild - Phases 1 till 7.2

This commit is contained in:
2026-02-20 20:51:10 +00:00
parent 25f5f74b1b
commit 92f4b2be8e
39 changed files with 5176 additions and 1657 deletions
@@ -2,7 +2,7 @@ import { useState, useEffect } from 'react';
import { Search, AlertCircle, CheckCircle2, Clock, ArrowLeft } from 'lucide-react';
import { useClient } from 'hooks/useClient';
import { Card } from '@/components/Card';
import { MessageBubble, type ChatMessage } from 'apps/Chat';
import { MessageBubble, type LegacyChatMessage } from 'apps/Chat';
type LogMetadata = {
filename: string;
@@ -18,7 +18,7 @@ type LogMetadata = {
};
type FullLog = LogMetadata & {
messages: ChatMessage[];
messages: LegacyChatMessage[];
};
const formatDate = (iso: string) => {