chore: space folders (#8707)

* chore: change the space folders structure

* fix: format
This commit is contained in:
sriram veeraghanta 2026-03-05 14:03:54 +05:30 committed by GitHub
parent be8836642a
commit 7fb6696c67
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
154 changed files with 30 additions and 197 deletions

View file

@ -4,7 +4,7 @@
* See the LICENSE file for details.
*/
import Link from "next/link";
import { Link } from "react-router";
// helpers
import { SUPPORT_EMAIL } from "@plane/constants";
@ -130,7 +130,7 @@ const errorCodeMessages: {
Your account is already registered. 
<Link
className="font-medium underline underline-offset-4 transition-all hover:font-bold"
href={`/sign-in${email ? `?email=${encodeURIComponent(email)}` : ``}`}
to={`/sign-in${email ? `?email=${encodeURIComponent(email)}` : ``}`}
>
Sign In
</Link>
@ -172,7 +172,7 @@ const errorCodeMessages: {
No account found.&nbsp;
<Link
className="font-medium underline underline-offset-4 transition-all hover:font-bold"
href={`/${email ? `?email=${encodeURIComponent(email)}` : ``}`}
to={`/${email ? `?email=${encodeURIComponent(email)}` : ``}`}
>
Create one
</Link>
@ -317,7 +317,7 @@ const errorCodeMessages: {
message: () => (
<div>
Admin user already exists.&nbsp;
<Link className="font-medium underline underline-offset-4 transition-all hover:font-bold" href={`/admin`}>
<Link className="font-medium underline underline-offset-4 transition-all hover:font-bold" to={`/admin`}>
Sign In
</Link>
&nbsp;now.
@ -329,7 +329,7 @@ const errorCodeMessages: {
message: () => (
<div>
Admin user does not exist.&nbsp;
<Link className="font-medium underline underline-offset-4 transition-all hover:font-bold" href={`/admin`}>
<Link className="font-medium underline underline-offset-4 transition-all hover:font-bold" to={`/admin`}>
Sign In
</Link>
&nbsp;now.