From c842de42d11044af28fc9f340e054bd01460d38c Mon Sep 17 00:00:00 2001 From: Peter Beverloo Date: Sat, 3 Feb 2024 23:13:35 +0000 Subject: [PATCH] Bug fix: Correctly label availability changes in the logs --- app/lib/LogLoader.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/LogLoader.ts b/app/lib/LogLoader.ts index 45ae4b28..018911b9 100644 --- a/app/lib/LogLoader.ts +++ b/app/lib/LogLoader.ts @@ -204,7 +204,7 @@ const kLogMessageFormatter: { [key in LogType]: string | LogMessageFormatFn } = return `${action} ${target?.name}'s participation in ${event}`; }, [LogType.ApplicationAvailabilityPreferences]: (source, target, { event }) => { - return `Updated their hotel preferences for ${event}`; + return `Updated their availability preferences for ${event}`; }, [LogType.ApplicationHotelPreferences]: (source, target, { event }) => { return `Updated their hotel preferences for ${event}`;