mirror of
https://github.com/cfngc4594/monaco-editor-lsp-next.git
synced 2025-05-18 15:26:36 +00:00
chore(ui): add eslint-disable for unused variables in ChatMessageList
This commit is contained in:
parent
c0783f0648
commit
ef37451313
@ -8,10 +8,12 @@ interface ChatMessageListProps extends React.HTMLAttributes<HTMLDivElement> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const ChatMessageList = React.forwardRef<HTMLDivElement, ChatMessageListProps>(
|
const ChatMessageList = React.forwardRef<HTMLDivElement, ChatMessageListProps>(
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||||
({ className, children, smooth = false, ...props }, _ref) => {
|
({ className, children, smooth = false, ...props }, _ref) => {
|
||||||
const {
|
const {
|
||||||
scrollRef,
|
scrollRef,
|
||||||
isAtBottom,
|
isAtBottom,
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||||
autoScrollEnabled,
|
autoScrollEnabled,
|
||||||
scrollToBottom,
|
scrollToBottom,
|
||||||
disableAutoScroll,
|
disableAutoScroll,
|
||||||
|
Loading…
Reference in New Issue
Block a user