Skip to content

Commit 04ab4a1

Browse files
committed
run prettier
1 parent 7779fc4 commit 04ab4a1

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

src/customBadges.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import Badges from "./Icons";
44
const { React } = common;
55
const { Tooltip, Clickable } = components;
66

7-
87
export enum BadgeSizes {
98
SIZE_24,
109
SIZE_22,

src/index.tsx

+3-4
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,9 @@ const cache = new Map<string, BadgeCache>();
104104
const REFRESH_INTERVAL = 1000 * 60 * 30;
105105

106106
export async function start(): Promise<void> {
107-
const mod = await webpack.waitForProps<{ BadgeSizes: BadgeSizes, default: BadgeMod }>("BadgeSizes")
108-
109-
110-
107+
const mod = await webpack.waitForProps<{ BadgeSizes: BadgeSizes; default: BadgeMod }>(
108+
"BadgeSizes",
109+
);
111110

112111
const Badge = await getBadges();
113112

0 commit comments

Comments
 (0)