Skip to content

Commit fc01c43

Browse files
cleanup chat-transcript props
1 parent 03efe06 commit fc01c43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/app/chat-transcript.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import { AnimatePresence, type HTMLMotionProps, motion } from 'motion/react';
44
import { type ReceivedChatMessage } from '@livekit/components-react';
5-
import { ChatEntry, ChatEntryProps } from '@/components/livekit/chat-entry';
5+
import { ChatEntry } from '@/components/livekit/chat-entry';
66

77
const MotionContainer = motion.create('div');
88
const MotionChatEntry = motion.create(ChatEntry);
@@ -48,7 +48,7 @@ const MESSAGE_MOTION_PROPS = {
4848
},
4949
};
5050

51-
interface ChatTranscriptProps extends Omit<ChatEntryProps, 'entry'> {
51+
interface ChatTranscriptProps {
5252
hidden?: boolean;
5353
messages?: ReceivedChatMessage[];
5454
}

0 commit comments

Comments
 (0)