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>
</PopoverTrigger>
<PopoverContent
anchor="bottomLeft"
anchor={"end"}
align={"end"}
className="w-32"
>
<Button

View File

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

View File

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