diff --git a/apps/meteor/client/components/RoomIcon/OmnichannelRoomIcon/OmnichannelRoomIcon.tsx b/apps/meteor/client/components/RoomIcon/OmnichannelRoomIcon/OmnichannelRoomIcon.tsx index ee92df6a0cdae..51f466c7f4776 100644 --- a/apps/meteor/client/components/RoomIcon/OmnichannelRoomIcon/OmnichannelRoomIcon.tsx +++ b/apps/meteor/client/components/RoomIcon/OmnichannelRoomIcon/OmnichannelRoomIcon.tsx @@ -20,7 +20,7 @@ type OmnichannelRoomIconProps = { color?: ComponentProps['color']; status?: UserStatus; size: ComponentProps['size']; - placement: 'sidebar' | 'default'; + placement?: 'sidebar' | 'default'; }; export const OmnichannelRoomIcon = ({ source, color, status, size = 'x16', placement = 'default' }: OmnichannelRoomIconProps) => { diff --git a/apps/meteor/client/views/omnichannel/directory/components/SourceField.tsx b/apps/meteor/client/views/omnichannel/directory/components/SourceField.tsx index 074bb0fe531a1..235f4f95d1fa8 100644 --- a/apps/meteor/client/views/omnichannel/directory/components/SourceField.tsx +++ b/apps/meteor/client/views/omnichannel/directory/components/SourceField.tsx @@ -56,7 +56,7 @@ const SourceField = ({ room }: SourceFieldProps) => { - + diff --git a/apps/meteor/client/views/room/Header/HeaderIconWithRoom.tsx b/apps/meteor/client/views/room/Header/HeaderIconWithRoom.tsx index 10de9166d9647..98eb417cd611b 100644 --- a/apps/meteor/client/views/room/Header/HeaderIconWithRoom.tsx +++ b/apps/meteor/client/views/room/Header/HeaderIconWithRoom.tsx @@ -14,7 +14,7 @@ type HeaderIconWithRoomProps = { const HeaderIconWithRoom = ({ room }: HeaderIconWithRoomProps): ReactElement => { const icon = useRoomIcon(room); if (isOmnichannelRoom(room)) { - return ; + return ; } return ; diff --git a/apps/meteor/client/views/room/HeaderV2/HeaderIconWithRoom.tsx b/apps/meteor/client/views/room/HeaderV2/HeaderIconWithRoom.tsx index 91cb397f30ccd..33f34ec7a86a8 100644 --- a/apps/meteor/client/views/room/HeaderV2/HeaderIconWithRoom.tsx +++ b/apps/meteor/client/views/room/HeaderV2/HeaderIconWithRoom.tsx @@ -14,7 +14,7 @@ type HeaderIconWithRoomProps = { const HeaderIconWithRoom = ({ room }: HeaderIconWithRoomProps): ReactElement => { const icon = useRoomIcon(room); if (isOmnichannelRoom(room)) { - return ; + return ; } return ;