Skip to content

Commit

Permalink
reduced chat id length (#1304)
Browse files Browse the repository at this point in the history
  • Loading branch information
mishramonalisha76 authored Nov 16, 2023
1 parent bf5a5e5 commit d8f9e01
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ export const GroupInfoModalContent = ({ onClose }: ModalInnerComponentType) => {
fontWeight="400"
style={{ color: `${theme.modalDescriptionTextColor}` }}
>
{shortenText(currentChat?.groupInformation?.chatId,isMobile?10:20,isMobile?10:20)}
{shortenText(currentChat?.groupInformation?.chatId,8,8)}
</SpanV2>
{!!copyText && (
<SpanV2
Expand Down

0 comments on commit d8f9e01

Please sign in to comment.