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.

few fixes

Luna b2005976 4111f041

+7 -4
+6 -1
app/dashboard/[guildId]/layout.tsx
··· 1 1 "use client"; 2 2 3 3 import { Button, Skeleton } from "@nextui-org/react"; 4 + import Head from "next/head"; 4 5 import Image from "next/image"; 5 6 import Link from "next/link"; 6 7 import { redirect, useParams } from "next/navigation"; ··· 101 102 102 103 return ( 103 104 <div className="flex flex-col w-full"> 104 - <title>{`${guild?.name}'s Dashboard`}</title> 105 + {guild?.name && ( 106 + <Head> 107 + <title>{`${guild?.name}'s Dashboard`}</title> 108 + </Head> 109 + )} 105 110 106 111 <div className="flex flex-col gap-5 mb-3"> 107 112 <Button
+1 -2
components/dashboard/lists/selector.tsx
··· 68 68 if (!guild) return <></>; 69 69 70 70 return (<> 71 - <div className="flex flex-col gap-2"> 71 + <div className="space-y-2"> 72 72 {items 73 73 .sort(sort) 74 74 .map((i) => ( ··· 123 123 buttons: React.ReactNode; 124 124 children: React.ReactNode; 125 125 }) { 126 - 127 126 return ( 128 127 <div className="flex justify-between p-4 bg-wamellow rounded-xl w-full duration-100"> 129 128 <div className="flex gap-3 items-center">
-1
components/login-button.tsx
··· 29 29 className 30 30 }: Props) { 31 31 if (state === State.Loading) return <></>; 32 - console.log(className); 33 32 34 33 return ( 35 34 <Button