forked from baron/baron-sso
fix: 기타 문법 오류 수정 및 i18n 언어팩(누락된 키) 업데이트
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user