Skip to content

Commit b267c87

Browse files
Merge branch 'master' into next-tweak-contact-links
2 parents 72ec7de + 17209b7 commit b267c87

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/packages/frontend/chat/chatroom.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ interface Props {
7070
project_id: string;
7171
path: string;
7272
is_visible?: boolean;
73-
fontSize: number;
73+
font_size: number;
7474
desc?;
7575
}
7676

@@ -79,7 +79,7 @@ export function ChatRoom({
7979
project_id,
8080
path,
8181
is_visible,
82-
fontSize,
82+
font_size,
8383
desc,
8484
}: Props) {
8585
const useEditor = useEditorRedux<ChatState>({ project_id, path });
@@ -288,7 +288,7 @@ export function ChatRoom({
288288
path={path}
289289
scrollToBottomRef={scrollToBottomRef}
290290
mode={"standalone"}
291-
fontSize={fontSize}
291+
fontSize={font_size}
292292
search={search}
293293
filterRecentH={filterRecentH}
294294
selectedHashtags={selectedHashtags}
@@ -307,7 +307,7 @@ export function ChatRoom({
307307
}}
308308
>
309309
<ChatInput
310-
fontSize={fontSize}
310+
fontSize={font_size}
311311
autoFocus
312312
cacheId={`${path}${project_id}-new`}
313313
input={input}

0 commit comments

Comments
 (0)