fix: fix build-time errors with latest Popover compatibility issues

This commit is contained in:
p-sw 2024-06-30 23:00:04 +09:00
parent fb69f288a1
commit b76014db0b
3 changed files with 14 additions and 4 deletions

View File

@ -62,7 +62,8 @@ function ThemeButton() {
</Button> </Button>
</PopoverTrigger> </PopoverTrigger>
<PopoverContent <PopoverContent
anchor="bottomLeft" anchor={"end"}
align={"end"}
className="w-32" className="w-32"
> >
<Button <Button

View File

@ -51,7 +51,12 @@ export const ThemeSelector = () => {
{theme === "light" ? <LightIcon /> : <DarkIcon />} {theme === "light" ? <LightIcon /> : <DarkIcon />}
</Button> </Button>
</PopoverTrigger> </PopoverTrigger>
<PopoverContent anchor={"bottomCenter"}> <PopoverContent
direction={"col"}
position={"end"}
anchor={"middle"}
align={"middle"}
>
<Button <Button
onClick={() => setTheme("dark")} onClick={() => setTheme("dark")}
preset={"ghost"} preset={"ghost"}

View File

@ -77,7 +77,8 @@ const SignInForm = () => {
return ( return (
<PopoverContent <PopoverContent
anchor={"bottomLeft"} anchor={"end"}
align={"end"}
className={"p-4 space-y-3"} className={"p-4 space-y-3"}
> >
<Label> <Label>
@ -127,7 +128,10 @@ const UserControlContent = () => {
} }
return ( return (
<PopoverContent anchor={"bottomLeft"}> <PopoverContent
anchor={"end"}
align={"end"}
>
<Button preset={"ghost"}>Dashboard</Button> <Button preset={"ghost"}>Dashboard</Button>
<Button <Button
preset={"ghost"} preset={"ghost"}