1
0
forked from baron/baron-sso

fix: 기타 문법 오류 수정 및 i18n 언어팩(누락된 키) 업데이트

This commit is contained in:
2026-05-14 11:01:49 +09:00
parent 841e1f8ab2
commit 024e1cc5bd
12 changed files with 174 additions and 12 deletions

View File

@@ -1,4 +1,10 @@
import { useInfiniteQuery, useMutation, useQuery } from "@tanstack/react-query";
import {
useInfiniteQuery,
useMutation,
useQuery,
type UseMutationResult,
} from "@tanstack/react-query";
import type { AdminProfile } from "../../../lib/adminApi";
import { useVirtualizer } from "@tanstack/react-virtual";
import type { AxiosError } from "axios";
import {
@@ -1184,8 +1190,13 @@ const TenantHierarchyView: React.FC<{
isDeletePending: boolean;
search: string;
deletableTenants: TenantSummary[];
statusMutation: any;
profile: any;
statusMutation: UseMutationResult<
TenantSummary,
Error,
{ tenantId: string; status: string },
unknown
>;
profile: AdminProfile | undefined;
sortConfig: SortConfig<TenantSortKey> | null;
requestSort: (key: TenantSortKey) => void;
getSortIcon: (key: TenantSortKey) => React.ReactNode;