diff --git a/public/js/index.js b/public/js/index.js
index 9ab0dde..f4481a9 100644
--- a/public/js/index.js
+++ b/public/js/index.js
@@ -171,10 +171,7 @@ function buildActivityHTML(activity) {
? `
${activity.buttons
.map((button, index) => {
- const label =
- typeof button === "string"
- ? button
- : button.label;
+ const label = typeof button === "string" ? button : button.label;
let url = null;
if (typeof button === "object" && button.url) {
url = button.url;
@@ -321,9 +318,7 @@ async function populateReadme(data) {
if (readmeSection && data.kv?.readme) {
const url = data.kv.readme;
try {
- const res = await fetch(
- `/api/readme?url=${encodeURIComponent(url)}`,
- );
+ const res = await fetch(`/api/readme?url=${encodeURIComponent(url)}`);
if (!res.ok) throw new Error("Failed to fetch readme");
const text = await res.text();
@@ -343,9 +338,7 @@ async function updatePresence(data) {
const cssLink = data.kv?.css;
if (cssLink) {
try {
- const res = await fetch(
- `/api/css?url=${encodeURIComponent(cssLink)}`,
- );
+ const res = await fetch(`/api/css?url=${encodeURIComponent(cssLink)}`);
if (!res.ok) throw new Error("Failed to fetch CSS");
const cssText = await res.text();
diff --git a/src/routes/api/readme.ts b/src/routes/api/readme.ts
index d972225..012b6b4 100644
--- a/src/routes/api/readme.ts
+++ b/src/routes/api/readme.ts
@@ -49,10 +49,7 @@ async function fetchAndCacheReadme(url: string): Promise {
if (!res.ok) return null;
if (res.headers.has("content-length")) {
- const size = Number.parseInt(
- res.headers.get("content-length") || "0",
- 10,
- );
+ const size = Number.parseInt(res.headers.get("content-length") || "0", 10);
if (size > 1024 * 100) return null;
}
@@ -107,8 +104,7 @@ async function handler(request: ExtendedRequest): Promise {
return new Response(safe, {
headers: {
"Content-Type": "text/html; charset=utf-8",
- "Cache-Control":
- "no-store, no-cache, must-revalidate, proxy-revalidate",
+ "Cache-Control": "no-store, no-cache, must-revalidate, proxy-revalidate",
Pragma: "no-cache",
Expires: "0",
},