diff --git a/web/components/chat/ChatContainer/ChatContainer.stories.tsx b/web/components/chat/ChatContainer/ChatContainer.stories.tsx
index 220f6d754..11be540ac 100644
--- a/web/components/chat/ChatContainer/ChatContainer.stories.tsx
+++ b/web/components/chat/ChatContainer/ChatContainer.stories.tsx
@@ -34,12 +34,7 @@ const AddMessagesChatExample = args => {
-
+
);
@@ -51,10 +46,18 @@ export const Example = Template.bind({});
Example.args = {
loading: false,
messages,
+ usernameToHighlight: 'testuser',
+ chatUserId: 'testuser',
+ isModerator: true,
+ showInput: true,
};
export const SingleMessage = Template.bind({});
SingleMessage.args = {
loading: false,
messages: [messages[0]],
+ usernameToHighlight: 'testuser',
+ chatUserId: 'testuser',
+ isModerator: true,
+ showInput: true,
};