We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03efe06 commit fc01c43Copy full SHA for fc01c43
components/app/chat-transcript.tsx
@@ -2,7 +2,7 @@
2
3
import { AnimatePresence, type HTMLMotionProps, motion } from 'motion/react';
4
import { type ReceivedChatMessage } from '@livekit/components-react';
5
-import { ChatEntry, ChatEntryProps } from '@/components/livekit/chat-entry';
+import { ChatEntry } from '@/components/livekit/chat-entry';
6
7
const MotionContainer = motion.create('div');
8
const MotionChatEntry = motion.create(ChatEntry);
@@ -48,7 +48,7 @@ const MESSAGE_MOTION_PROPS = {
48
},
49
};
50
51
-interface ChatTranscriptProps extends Omit<ChatEntryProps, 'entry'> {
+interface ChatTranscriptProps {
52
hidden?: boolean;
53
messages?: ReceivedChatMessage[];
54
}
0 commit comments