From 67705573ea1b92ef100bb6bd4429e48c5396d743 Mon Sep 17 00:00:00 2001 From: AMelonInsideLemon Date: Tue, 4 Jun 2024 11:11:56 +0000 Subject: [PATCH] Apply prettier changes --- src/services/inventoryService.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/services/inventoryService.ts b/src/services/inventoryService.ts index 8e4de0dd..357a2120 100644 --- a/src/services/inventoryService.ts +++ b/src/services/inventoryService.ts @@ -75,7 +75,7 @@ export const addSentinel = async (sentinelName: string, accountId: string) => { export const addPowerSuit = async (powersuitName: string, accountId: string): Promise => { const specialItems = getExalted(powersuitName); - if(specialItems != false){ + if (specialItems != false) { for await (const specialItem of specialItems) { await addSpecialItem(specialItem, accountId); } @@ -88,7 +88,7 @@ export const addPowerSuit = async (powersuitName: string, accountId: string): Pr export const addMechSuit = async (mechsuitName: string, accountId: string) => { const specialItems = getExalted(mechsuitName); - if(specialItems != false){ + if (specialItems != false) { for await (const specialItem of specialItems) { await addSpecialItem(specialItem, accountId); }