The weeb for the next gen discord boat - Wamellow wamellow.com
bot discord
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

bug fixes

Luna 1b900188 0a91a5bd

+3 -3
+2 -2
app/(dynamic-assets)/favicon.ico/route.ts
··· 33 33 34 34 // does anything even care if it's an actual x-icon lol 35 35 return new Response( 36 - icon, 36 + new Uint8Array(icon), 37 37 { 38 38 headers: { 39 39 "Content-Type": "image/png", 40 - "Cache-Control": "public, s-maxage=691200, immutable" 40 + "Cache-Control": "public, s-max-age=691200, immutable" 41 41 } 42 42 } 43 43 );
+1 -1
components/markdown/index.tsx
··· 182 182 ul: (props) => <ul className="list-disc list-inside space-y-1 marker:text-neutral-300/40 my-1" {...props} />, 183 183 p: (props) => <span {...props} />, 184 184 185 - mark: ({ children }) => <Notice type={NoticeType.Info} message={children?.toString() || ""} className="mt-2 mb-0" /> 185 + mark: ({ children }) => <Notice type={NoticeType.Info} message={children?.toString() || ""} /> 186 186 187 187 }} 188 188 >