Skip to content

Commit

Permalink
fix: import default styles for copilot chat (#2130)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kiryous authored Oct 8, 2024
1 parent 2b4c83c commit 4765d2e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion keep-ui/app/incidents/[id]/incident-chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@ import {
} from "utils/hooks/useIncidents";
import { EmptyStateCard } from "@/components/ui/EmptyStateCard";
import { useRouter } from "next/navigation";
import "./incident-chat.css";
import Loading from "app/loading";
import { useCopilotAction, useCopilotReadable } from "@copilotkit/react-core";
import { updateIncidentRequest } from "../create-or-update-incident";
import { useSession } from "next-auth/react";
import { toast } from "react-toastify";
import "@copilotkit/react-ui/styles.css";
import "./incident-chat.css";

export default function IncidentChat({ incident }: { incident: IncidentDto }) {
const router = useRouter();
Expand Down

0 comments on commit 4765d2e

Please sign in to comment.