diff --git a/src/lib/images.tsx b/src/lib/images.tsx
index 573cb09..93775da 100644
--- a/src/lib/images.tsx
+++ b/src/lib/images.tsx
@@ -177,7 +177,7 @@ export async function generateMetadataImage(mii: Mii, author: string): Promise<{
{/* Watermark */}
-

+

{/* I tried using text-orange-400 but it wasn't correct..? */}
TomodachiShare
@@ -200,8 +200,8 @@ export async function generateMetadataImage(mii: Mii, author: string): Promise<{
try {
// I tried using .webp here but the quality looked awful
// but it actually might be well-liked due to the hatred of .webp
- const fileLocation = path.join(miiUploadsDirectory, "metadata.png");
- await fs.writeFile(fileLocation, buffer);
+ // const fileLocation = path.join(miiUploadsDirectory, "metadata.png");
+ // await fs.writeFile(fileLocation, buffer);
} catch (error) {
console.error("Error storing 'metadata' image type", error);
return { error: `Failed to store metadata image for ${mii.id}`, status: 500 };