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.

add beta tag to lang select

Luna 6cfda97a 28a08867

+4 -3
+4 -3
components/Header.tsx
··· 17 17 import authorizeUser from "@/utils/authorize-user"; 18 18 import cn from "@/utils/cn"; 19 19 20 + import Badge from "./badge"; 20 21 import ImageReduceMotion from "./image-reduce-motion"; 21 22 22 23 export default function Header(props: React.ComponentProps<"div">) { ··· 225 226 </div> 226 227 ); 227 228 } 228 - 229 229 function LanguageSwitcher() { 230 230 const { setLanguage } = useTranslation(); 231 231 ··· 233 233 <Dropdown> 234 234 <DropdownTrigger> 235 235 <Button 236 - variant="solid" 237 - className="min-w-0 mr-4" 236 + variant="light" 237 + className="min-w-0 mr-2" 238 238 > 239 239 <RiTranslate2 /> 240 240 </Button> ··· 244 244 <DropdownItem 245 245 key={lang.name} 246 246 onClick={() => setLanguage(lang.locale)} 247 + endContent={lang.locale !== "en-EN" && <Badge text="Beta" />} 247 248 > 248 249 {lang.name} 249 250 </DropdownItem>