Skip to content

Commit

Permalink
fix: truncation limit for room title (#2578)
Browse files Browse the repository at this point in the history
  • Loading branch information
KaustubhKumar05 authored Feb 21, 2024
1 parent ca61b6d commit e922bd9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { SHEET_OPTIONS, SIDE_PANE_OPTIONS } from '../../common/constants';
export const RoomDetailsHeader = () => {
const { title, description } = useRoomLayoutHeader();
const isMobile = useMedia(cssConfig.media.md);
const clipLength = 80;
const clipLength = 30;
const toggleDetailsPane = useSidepaneToggle(SIDE_PANE_OPTIONS.ROOM_DETAILS);
const toggleDetailsSheet = useSheetToggle(SHEET_OPTIONS.ROOM_DETAILS);

Expand Down

0 comments on commit e922bd9

Please sign in to comment.