import { Button } from "react-daisyui"; import { Plus } from "lucide-react"; import Chips from "@/components/ui/chips"; import { Bucket } from "../../types"; type Props = { data?: Bucket; }; const AliasesSection = ({ data }: Props) => { const aliases = data?.globalAliases?.slice(1); return (
Aliases