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.

fix type errors

Luna 2f4652fc fd6128b5

+5 -2
+1 -1
app/leaderboard/[guildId]/layout.tsx
··· 13 13 import { getDesign, getPagination } from "./api"; 14 14 import Side from "./side.component"; 15 15 16 - export interface Props { 16 + interface Props { 17 17 params: Promise<{ guildId: string; }>; 18 18 children: React.ReactNode; 19 19 }
+4 -1
app/leaderboard/[guildId]/open-graph.png/route.tsx
··· 12 12 13 13 import { getTopMembers } from "../api"; 14 14 import Icon from "../icon.component"; 15 - import type { Props } from "../layout"; 15 + 16 + interface Props { 17 + params: Promise<{ guildId: string; }>; 18 + } 16 19 17 20 export const revalidate = 3600; // 1 hour 18 21