diff --git a/chatdesk-ui/app/[locale]/login/page.tsx b/chatdesk-ui/app/[locale]/login/page.tsx index 52a98ba..b51bfaa 100644 --- a/chatdesk-ui/app/[locale]/login/page.tsx +++ b/chatdesk-ui/app/[locale]/login/page.tsx @@ -52,7 +52,7 @@ export default async function Login({ .select("*") .eq("user_id", session.user.id) .eq("is_home", true) - .limit(1); // Limit to 1 row + .limit(1) // Limit to 1 row //.single() // if (!homeWorkspace) { @@ -103,7 +103,7 @@ export default async function Login({ .select("*") .eq("user_id", data.user.id) .eq("is_home", true) - .limit(1); // Limit to 1 row + .limit(1) // Limit to 1 row //.single() if (!homeWorkspace || homeWorkspace.length === 0) {