Skip to content

Commit 6d00e2c

Browse files
committed
fix: linter errors
1 parent 1cb65ca commit 6d00e2c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/kernel/startup/auto-llamas.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import { getCatalog } from '../../services/endpoints/storefront'
3838
import { getKey, parseRarity } from '../../lib/parsers/resources'
3939
import { isMCPQueryProfileChangesPrerollData } from '../../lib/check-objects'
4040
import { getDateWithDefaultFormat } from '../../lib/dates'
41-
import { sleep } from '@/lib/timers'
41+
import { sleep } from '../../lib/timers'
4242

4343
export enum ProcessLlamaType {
4444
FreeUpgrade = 'free-upgrade-llama',

src/routes/-index/-home/uncommon-perk-up.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ export function UncommonPerkUpSection({
5252

5353
const quantity =
5454
baseReward.quantity > 1
55-
? (baseReward as any).isBad !== undefined
55+
? // eslint-disable-next-line @typescript-eslint/no-explicit-any
56+
(baseReward as any).isBad !== undefined
5657
? `${numberWithCommaSeparator(baseReward.quantity)}x`
5758
: numberWithCommaSeparator(baseReward.quantity)
5859
: null

0 commit comments

Comments
 (0)