Record 'roots list changed' notifications in history sidebar

This commit is contained in:
Justin Spahr-Summers
2024-11-08 12:04:45 +00:00
parent 57f0c49154
commit 2867173e7b
2 changed files with 23 additions and 11 deletions

View File

@@ -6,7 +6,7 @@ const HistoryAndNotifications = ({
requestHistory,
serverNotifications,
}: {
requestHistory: Array<{ request: string; response: string | null }>;
requestHistory: Array<{ request: string; response?: string }>;
serverNotifications: ServerNotification[];
}) => {
const [expandedRequests, setExpandedRequests] = useState<{