Fix build errors
This commit is contained in:
parent
255585cd9f
commit
100b43dd3a
@ -6,15 +6,12 @@ import s from './Sidebar.module.scss';
|
||||
|
||||
import {
|
||||
chatMessagesAtom,
|
||||
appStateAtom,
|
||||
chatDisplayNameAtom,
|
||||
chatUserIdAtom,
|
||||
} from '../../stores/ClientConfigStore';
|
||||
import { AppStateOptions } from '../../stores/application-state';
|
||||
|
||||
export default function Sidebar() {
|
||||
const messages = useRecoilValue<ChatMessage[]>(chatMessagesAtom);
|
||||
const appState = useRecoilValue<AppStateOptions>(appStateAtom);
|
||||
const chatDisplayName = useRecoilValue<string>(chatDisplayNameAtom);
|
||||
const chatUserId = useRecoilValue<string>(chatUserIdAtom);
|
||||
|
||||
@ -22,7 +19,6 @@ export default function Sidebar() {
|
||||
<Sider className={s.root} collapsedWidth={0} width={320}>
|
||||
<ChatContainer
|
||||
messages={messages}
|
||||
loading={appState.chatLoading}
|
||||
usernameToHighlight={chatDisplayName}
|
||||
chatUserId={chatUserId}
|
||||
isModerator={false}
|
||||
|
@ -24,7 +24,7 @@ const testMessages =
|
||||
const messages: ChatMessage[] = JSON.parse(testMessages);
|
||||
|
||||
const AddMessagesChatExample = args => {
|
||||
const { messages: m, loading } = args;
|
||||
const { messages: m } = args;
|
||||
const [chatMessages, setChatMessages] = useState<ChatMessage[]>(m);
|
||||
|
||||
return (
|
||||
@ -34,7 +34,6 @@ const AddMessagesChatExample = args => {
|
||||
</button>
|
||||
<ChatContainer
|
||||
messages={chatMessages}
|
||||
loading={loading}
|
||||
usernameToHighlight={null}
|
||||
chatUserId={null}
|
||||
isModerator={false}
|
||||
|
Loading…
x
Reference in New Issue
Block a user