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 some styles

Luna a870c5f4 1d6b2b4a

+23 -11
+22 -10
app/(home)/debug/page.tsx
··· 1 1 import { Metadata } from "next"; 2 2 import { cookies } from "next/headers"; 3 + import Link from "next/link"; 3 4 import { HiTrash } from "react-icons/hi"; 4 5 5 6 import Box from "@/components/box"; 6 7 import { ServerButton } from "@/components/server-button"; 7 8 import { Shiggy } from "@/components/shiggy"; 9 + import cn from "@/utils/cn"; 8 10 import { getBaseUrl, getCanonicalUrl } from "@/utils/urls"; 9 11 10 12 export const generateMetadata = async (): Promise<Metadata> => { ··· 98 100 99 101 {cookieStore.getAll().map((cookie) => ( 100 102 <div 101 - className="pt-2 flex items-center justify-between" 103 + className="pt-2 flex gap-4 items-center justify-between" 102 104 key={cookie.name} 103 105 > 104 106 <div> 105 107 <h3 className="text-lg font-medium text-neutral-200">{cookie.name}</h3> 106 108 107 - <p className={cookie.name === "session" ? "blur hover:blur-0 transition duration-50" : ""}> 109 + <div className={cn( 110 + "break-all", 111 + cookie.name === "session" ? "blur hover:blur-0 transition duration-50" : "" 112 + )}> 108 113 {cookie.value} 109 - </p> 114 + </div> 110 115 </div> 111 116 112 117 <form action={deleteCookie}> ··· 123 128 124 129 </div> 125 130 126 - <form 127 - className="mt-4" 128 - action={deleteCookie} 129 - > 131 + <div className="mt-4 flex gap-2 items-center"> 132 + <form action={deleteCookie}> 133 + <ServerButton 134 + type="submit" 135 + > 136 + Delete all cookies 137 + </ServerButton> 138 + </form> 130 139 <ServerButton 131 - type="submit" 140 + as={Link} 141 + href="/logout" 142 + prefetch={false} 132 143 > 133 - Delete all cookies 144 + Logout 134 145 </ServerButton> 135 - </form> 146 + </div> 147 + 136 148 </div> 137 149 138 150 <Shiggy className="mt-auto h-52" />
+1 -1
app/dashboard/[guildId]/leaderboards/updating.component.tsx
··· 53 53 }); 54 54 55 55 return ( 56 - <div className="md:w-1/3 flex items-center flex-col"> 56 + <div className="w-1/3 flex items-center flex-col"> 57 57 <div> 58 58 <div className="text-sm mb-0.5">Updating {type} {leaderboard?.channelId && "in"}</div> 59 59