diff --git a/ui/desktop/src/components/schedule/ScheduleDetailView.tsx b/ui/desktop/src/components/schedule/ScheduleDetailView.tsx index 854ffe7bbd96..171f0ed61899 100644 --- a/ui/desktop/src/components/schedule/ScheduleDetailView.tsx +++ b/ui/desktop/src/components/schedule/ScheduleDetailView.tsx @@ -497,8 +497,8 @@ const ScheduleDetailView: React.FC = ({ scheduleId, onN
-

Schedule Details

-

Viewing Schedule ID: {scheduleId}

+

Schedule Details

+

Viewing Schedule ID: {scheduleId}

diff --git a/ui/desktop/src/components/sessions/SessionHistoryView.tsx b/ui/desktop/src/components/sessions/SessionHistoryView.tsx index 23d764743d76..ff5a6b8b21de 100644 --- a/ui/desktop/src/components/sessions/SessionHistoryView.tsx +++ b/ui/desktop/src/components/sessions/SessionHistoryView.tsx @@ -10,7 +10,6 @@ import { Target, LoaderCircle, AlertCircle, - ChevronLeft, ExternalLink, } from 'lucide-react'; import { type SessionDetails } from '../../sessions'; @@ -32,6 +31,7 @@ import ProgressiveMessageList from '../ProgressiveMessageList'; import { SearchView } from '../conversation/SearchView'; import { ChatContextManagerProvider } from '../context_management/ChatContextManager'; import { Message } from '../../types/message'; +import BackButton from '../ui/BackButton'; // Helper function to determine if a message is a user message (same as useChatEngine) const isUserMessage = (message: Message): boolean => { @@ -88,13 +88,10 @@ const SessionHeader: React.FC<{ }> = ({ onBack, children, title, actionButtons }) => { return (
-
- +
+
-

{title}

+

{title}

{children}
{actionButtons &&
{actionButtons}
}
@@ -372,12 +369,12 @@ const SessionHistoryView: React.FC = ({
-
+
{shareLink} );