From b7482a3ffc9c2b5c8e878a022d1d2347ebfcb865 Mon Sep 17 00:00:00 2001 From: Lance Pioch Date: Tue, 8 Nov 2022 00:24:59 -0500 Subject: [PATCH] The only way to resolve this without updating the package --- .../scripts/components/elements/activity/ActivityLogEntry.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/scripts/components/elements/activity/ActivityLogEntry.tsx b/resources/scripts/components/elements/activity/ActivityLogEntry.tsx index 183b2ab3f..12cac649e 100644 --- a/resources/scripts/components/elements/activity/ActivityLogEntry.tsx +++ b/resources/scripts/components/elements/activity/ActivityLogEntry.tsx @@ -19,7 +19,7 @@ interface Props { function wrapProperties(value: unknown): any { if (value === null || typeof value === 'string' || typeof value === 'number') { - return `${String(value)}`; + return `${String(value)}`; } if (isObject(value)) {