Removed firm setup flow

X-Lovable-Edit-ID: edt-fea2c3d6-f014-4bca-afcd-fd689ca4caf9
Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-05-14 03:35:18 +00:00
co-authored by renee-png
2 changed files with 1 additions and 16 deletions
-9
View File
@@ -1335,12 +1335,3 @@ const rootRouteChildren: RootRouteChildren = {
export const routeTree = rootRouteImport
._addFileChildren(rootRouteChildren)
._addFileTypes<FileRouteTypes>()
import type { getRouter } from './router.tsx'
import type { createStart } from '@tanstack/react-start'
declare module '@tanstack/react-start' {
interface Register {
ssr: true
router: Awaited<ReturnType<typeof getRouter>>
}
}
+1 -7
View File
@@ -1,4 +1,4 @@
import { createFileRoute, useNavigate, Link } from "@tanstack/react-router";
import { createFileRoute, useNavigate } from "@tanstack/react-router";
import { useEffect, useState } from "react";
import { useAuth } from "@/lib/auth";
import { Button } from "@/components/ui/button";
@@ -106,12 +106,6 @@ function LoginPage() {
{submitting && <Loader2 className="mr-2 h-4 w-4 animate-spin" />}
Sign in
</Button>
<p className="text-xs text-muted-foreground text-center">
First time setting up the firm?{" "}
<Link to="/setup" className="text-primary underline-offset-4 hover:underline">
Create the founding admin account
</Link>
</p>
</form>
</CardContent>
</Card>