From f61c32c16a209406f69bbbd51a1d967fdfdd0a3e Mon Sep 17 00:00:00 2001 From: enes Date: Thu, 28 Nov 2024 17:13:53 +0100 Subject: [PATCH] fix: comments --- src/pages/profile/loader.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/profile/loader.ts b/src/pages/profile/loader.ts index b9c13e9..f5bc1b6 100644 --- a/src/pages/profile/loader.ts +++ b/src/pages/profile/loader.ts @@ -123,7 +123,7 @@ export const profileRouteLoader = ) } - // Check the profile event result + // Check the mutelist event result const muteListResult = settled[1] if (muteListResult.status === 'fulfilled' && muteListResult.value) { result.muteLists = muteListResult.value @@ -139,7 +139,7 @@ export const profileRouteLoader = ) } - // Check the profile event result + // Check the nsfwlist event result const nsfwListResult = settled[2] if (nsfwListResult.status === 'fulfilled' && nsfwListResult.value) { result.nsfwList = nsfwListResult.value @@ -152,7 +152,7 @@ export const profileRouteLoader = ) } - // Check the profile event result + // Check the repostlist event result const repostListResult = settled[3] if (repostListResult.status === 'fulfilled' && repostListResult.value) { result.repostList = repostListResult.value