From d9ed46f4b9c5f7b6ed7885dbfed672121fc721eb Mon Sep 17 00:00:00 2001 From: chan Date: Wed, 4 Mar 2026 13:43:35 +0900 Subject: [PATCH] fix(adminfront): add missing React import in TenantListPage --- adminfront/src/features/tenants/routes/TenantListPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adminfront/src/features/tenants/routes/TenantListPage.tsx b/adminfront/src/features/tenants/routes/TenantListPage.tsx index 7f5870d3..8a0983e1 100644 --- a/adminfront/src/features/tenants/routes/TenantListPage.tsx +++ b/adminfront/src/features/tenants/routes/TenantListPage.tsx @@ -1,7 +1,7 @@ import { useMutation, useQuery } from "@tanstack/react-query"; import type { AxiosError } from "axios"; import { CornerDownRight, Pencil, Plus, RefreshCw, Trash2 } from "lucide-react"; -import type React from "react"; +import * as React from "react"; import { Link, useNavigate } from "react-router-dom"; import { Badge } from "../../../components/ui/badge"; import { Button } from "../../../components/ui/button";