File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ import { getCatalog } from '../../services/endpoints/storefront'
3838import { getKey , parseRarity } from '../../lib/parsers/resources'
3939import { isMCPQueryProfileChangesPrerollData } from '../../lib/check-objects'
4040import { getDateWithDefaultFormat } from '../../lib/dates'
41- import { sleep } from '@ /lib/timers'
41+ import { sleep } from '../.. /lib/timers'
4242
4343export enum ProcessLlamaType {
4444 FreeUpgrade = 'free-upgrade-llama' ,
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments