temporary fix redirect issue in nextjs export
This commit is contained in:
@@ -11,7 +11,7 @@ export const ChatModal = () => {
|
||||
|
||||
useEffect(() => {
|
||||
getPlebs()
|
||||
.then((res) => setPlebs(res))
|
||||
.then((res: any) => setPlebs(res))
|
||||
.catch(console.error);
|
||||
}, []);
|
||||
|
||||
@@ -19,7 +19,7 @@ export const ChatModal = () => {
|
||||
<Dialog.Root>
|
||||
<Dialog.Trigger asChild>
|
||||
<div className="group inline-flex items-center gap-2 rounded-md px-2.5 py-1.5 hover:bg-zinc-900">
|
||||
<div className="group-hover:800 inline-flex h-5 w-5 shrink items-center justify-center rounded bg-zinc-900">
|
||||
<div className="group-hover:800 inline-flex h-5 w-5 shrink items-center justify-center rounded bg-zinc-900 group-hover:bg-zinc-800">
|
||||
<Plus width={12} height={12} className="text-zinc-500" />
|
||||
</div>
|
||||
<div>
|
||||
|
||||
Reference in New Issue
Block a user