fix: fix build-time errors with latest Popover compatibility issues
This commit is contained in:
parent
fb69f288a1
commit
b76014db0b
@ -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
|
||||||
|
@ -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"}
|
||||||
|
@ -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"}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user