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)) {