Skip to content
This repository has been archived by the owner on Dec 11, 2024. It is now read-only.

Commit

Permalink
Update Lables
Browse files Browse the repository at this point in the history
  • Loading branch information
Kathund committed Aug 12, 2024
1 parent c9b578a commit ea6e546
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@ XS:
color: 3CBF00
S:
name: size/S
lines: 10
lines: 50
color: 5D9801
M:
name: size/M
lines: 50
lines: 200
color: 7F7203
L:
name: size/L
lines: 200
lines: 1000
color: A14C05
XL:
name: size/XL
lines: 1000
lines: 3000
color: C32607
XXL:
name: size/XXL
lines: 5000
lines: 7500
color: E50009
2 changes: 1 addition & 1 deletion src/utils/SkyblockUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ export function getBestiaryLevel(userProfile: Record<string, any>): number {
}

return tiersUnlocked / 10;
} catch (error) {
} catch {
return 0;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/utils/toUuid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default async function (input: string, cacheTime: number = 600, useThirdP
}
if (!res.id) throw new Error(Errors.PLAYER_DOES_NOT_EXIST);
return res.id;
} catch (e) {
} catch {
throw new Error(Errors.PLAYER_DOES_NOT_EXIST);
}
}

0 comments on commit ea6e546

Please sign in to comment.