Skip to content

Commit 24b2ea8

Browse files
committed
chore: apply prettier
1 parent b6756ec commit 24b2ea8

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

2025/src/components/Sponsors/Companies.astro

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,7 @@ const rankNameMap = {
3434
};
3535
3636
const getGridClasses = (rank: string, count: number) => {
37-
const baseClasses = [
38-
"mb-8",
39-
"grid",
40-
"place-items-center",
41-
"gap-4",
42-
];
37+
const baseClasses = ["mb-8", "grid", "place-items-center", "gap-4"];
4338
4439
if (rank === "platinum") {
4540
return [...baseClasses, "grid-cols-1"];

2025/src/components/Sponsors/Company.astro

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ const { rank, name, url, image } = props.sponsor;
1313
1414
let imageUrl = "";
1515
try {
16-
const module = await import(/* @vite-ignore */ `../../assets/sponsors/${image}?url`);
16+
const module = await import(
17+
/* @vite-ignore */ `../../assets/sponsors/${image}?url`
18+
);
1719
imageUrl = module.default;
1820
} catch (e) {
1921
console.error(`Icon not found: ${image}`);

0 commit comments

Comments
 (0)