Fix groupV2 change rendering in notifications and left pane

This commit is contained in:
Scott Nonnenberg 2021-12-16 09:44:54 -08:00 committed by GitHub
parent 364f00f37a
commit 29c3b8af89
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 34 additions and 28 deletions

View file

@ -28,7 +28,7 @@ export type PropsDataType = {
export type PropsHousekeepingType = {
i18n: LocalizerType;
renderContact: SmartContactRendererType;
renderContact: SmartContactRendererType<FullJSXType>;
};
export type PropsType = PropsDataType & PropsHousekeepingType;
@ -141,7 +141,7 @@ export function GroupV2Change(props: PropsType): ReactElement {
return (
<>
{renderChange(change, {
{renderChange<FullJSXType>(change, {
i18n,
ourUuid,
renderContact,