PLS
This commit is contained in:
parent
b4ba10fd77
commit
f7b35f1de6
2 changed files with 2 additions and 2 deletions
|
@ -34,7 +34,7 @@ export const fetchCache = "force-no-store";
|
|||
const VoteUI = () => {
|
||||
const params = useParams();
|
||||
const roomId = params?.id as string;
|
||||
const { isSignedIn, user } = useUser();
|
||||
const { user } = useUser();
|
||||
|
||||
const [storyNameText, setStoryNameText] = useState<string>("");
|
||||
const [roomScale, setRoomScale] = useState<string>("");
|
||||
|
|
|
@ -5,7 +5,7 @@ import { Suspense } from "react";
|
|||
export const runtime = "edge";
|
||||
export const preferredRegion = ["pdx1"];
|
||||
|
||||
export default async function Room() {
|
||||
export default function Room() {
|
||||
return (
|
||||
<div className="flex flex-col items-center justify-center text-center gap-2">
|
||||
<Suspense fallback={<Loading />}>
|
||||
|
|
Loading…
Add table
Reference in a new issue