From 495c928e5de99dec8844943130588b51e7be42d5 Mon Sep 17 00:00:00 2001 From: Bertie690 <136088738+Bertie690@users.noreply.github.com> Date: Sun, 21 Sep 2025 10:44:50 -0400 Subject: [PATCH] Update game-data-utils.ts Co-authored-by: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com> --- src/utils/game-data-utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/game-data-utils.ts b/src/utils/game-data-utils.ts index 69a926f57db..38ff0068a5f 100644 --- a/src/utils/game-data-utils.ts +++ b/src/utils/game-data-utils.ts @@ -4,7 +4,7 @@ import { loggedInUser } from "#app/account"; * Utility function to obtain the local storage key for a given save slot. * @param slotId - The numerical save slot ID. * Will throw an error if `<0` (in line with standard util functions) - * @returns The local storage key used to access the save data for the given slot.. + * @returns The local storage key used to access the save data for the given slot. */ export function getSaveDataLocalStorageKey(slotId: number): string { if (slotId < 0) {