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.

works in dev

Luna e1503b34 25e0aea1

+2 -2
+2 -2
app/leaderboard/[guildId]/page.tsx
··· 138 138 139 139 <div className="md:w-3/4 md:mr-6"> 140 140 { 141 - (guild && !("statusCode" in guild) && (!searchParams.type || searchParams.type === "voiceminutes" || searchParams.type === "invites")) ? 141 + (guild?.id && (!searchParams.type || searchParams.type === "voiceminutes" || searchParams.type === "invites")) ? 142 142 (members || []).sort((a, b) => (b?.activity?.[searchParams.type as Types] ?? 0) - (a?.activity?.[searchParams.type as Types] ?? 0)).map((member) => 143 143 <div 144 144 key={member.id} ··· 173 173 ) 174 174 : 175 175 <ErrorBanner 176 - message={(!guild || "statusCode" in guild) ? "Not Found" : "Invalid leaderboard type"} 176 + message={!guild?.id ? "Not Found" : "Invalid leaderboard type"} 177 177 /> 178 178 } 179 179