From 2f65c444a5ff402e41c8b2dae431610b02bd2d5f Mon Sep 17 00:00:00 2001 From: Fuwn Date: Tue, 24 Dec 2024 11:13:15 -0800 Subject: fix(wrapped): li::marker consistent colouring --- src/graphql/user/resolvers.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/graphql/user/resolvers.ts') diff --git a/src/graphql/user/resolvers.ts b/src/graphql/user/resolvers.ts index 30f48cd1..e6575a75 100644 --- a/src/graphql/user/resolvers.ts +++ b/src/graphql/user/resolvers.ts @@ -49,7 +49,7 @@ const authenticatedBadgesOperation = async ( if (identity instanceof Error) return []; - const authorised = privilegedUser(identity.id) + const authorised = privilegedUser(identity.id); await operation(identity, authorised); @@ -71,7 +71,7 @@ const authenticatedPreferencesOperation = async ( if (identity instanceof Error) return []; - const authorised = privilegedUser(identity.id) + const authorised = privilegedUser(identity.id); return { id: identity.id, @@ -129,7 +129,7 @@ export const resolvers: WithIndex = { allBadges .filter((badge) => badge.category === category) .filter((badge) => badge.hidden).length > - allBadges.filter((badge) => badge.category === category).length / 2 + allBadges.filter((badge) => badge.category === category).length / 2 ? false : true }); -- cgit v1.2.3