Skip to content

Commit 5ec11c4

Browse files
committed
+
1 parent f7e05cf commit 5ec11c4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ui/components/landing/SponsorsLine.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@
217217
} else {
218218
cardName.textContent =
219219
item.sponsorEntity.__typename === "User"
220-
? "@"
220+
? "@" + item.sponsorEntity.login
221221
: "" + item.sponsorEntity.login;
222222
}
223223
const cardWrapper = card.querySelector(

src/utils-client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export const sponsorsHandler = async () => {
5353
const response = await fetch("https://api.drizzle.team/v2/sponsors");
5454
const { sponsors } = await response.json();
5555

56-
const allSponsors = [...sponsors, ...customSponsors];
56+
const allSponsors = [...customSponsors, ...sponsors];
5757
let pastSponsors: ISponsor[] = [];
5858

5959
const currentDate = new Date();

0 commit comments

Comments
 (0)