Fix image in AvatarLightbox for Note to Self

This commit is contained in:
Fedor Indutny 2024-08-05 11:46:15 -07:00 committed by GitHub
parent 620392e687
commit 1a87989f94
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 33 additions and 7 deletions

View file

@ -15,6 +15,7 @@ export type PropsType = {
conversationTitle?: string;
i18n: LocalizerType;
isGroup?: boolean;
noteToSelf?: boolean;
onClose: () => unknown;
};
@ -24,6 +25,7 @@ export function AvatarLightbox({
conversationTitle,
i18n,
isGroup,
noteToSelf,
onClose,
}: PropsType): JSX.Element {
return (
@ -47,6 +49,7 @@ export function AvatarLightbox({
conversationTitle={conversationTitle}
i18n={i18n}
isGroup={isGroup}
noteToSelf={noteToSelf}
style={{
fontSize: '16em',
width: 'auto',