Skip to content

Commit

Permalink
fix: hide etherpad chat (#560)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandre Chau authored Feb 17, 2023
1 parent 9ebc16d commit 94b46d6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/item/ItemContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,11 @@ const ItemContent: FC<Props> = ({ item, enableEditing, permission }) => {
return <ErrorAlert id={ITEM_SCREEN_ERROR_ALERT_ID} />;
}
return (
<EtherpadItem itemId={itemId} padUrl={etherpadQuery.data.padUrl} />
<EtherpadItem
itemId={itemId}
padUrl={etherpadQuery.data.padUrl}
options={{ showChat: false }}
/>
);
}

Expand Down

0 comments on commit 94b46d6

Please sign in to comment.