chore: Update type imports for client and dashboard pages

This commit is contained in:
wood chen 2025-02-23 01:05:31 +08:00
parent 0fe8bfc6aa
commit f1cfe78be1
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,6 @@
import Link from "next/link";
import { notFound, redirect } from "next/navigation";
import type { ExtendedClient } from "@/types";
import type { ExtendedAccessToken, ExtendedClient } from "@/types";
import { ArrowLeft } from "lucide-react";
import { getAuthorizationsByClientId } from "@/lib/dto/authorization";

View File

@ -1,5 +1,6 @@
import Link from "next/link";
import { redirect } from "next/navigation";
import type { Prisma } from "@prisma/client";
import { getClientsByUserId } from "@/lib/dto/client";
import { getCurrentUser } from "@/lib/session";