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.

redirect to dashboard after invite

Luna fad9f857 a870c5f4

+6 -1
+6 -1
app/login/route.ts
··· 90 90 ); 91 91 92 92 93 + const guildId = searchParams.get("guild_id"); 93 94 const state = searchParams.get("state") || "/"; 94 95 95 - redirect(decodeURIComponent(state)); 96 + redirect( 97 + guildId 98 + ? `/dashboard/${guildId}` 99 + : decodeURIComponent(state) 100 + ); 96 101 97 102 }