♻️ show idp name in user selector

This commit is contained in:
Fred KISSIE
2026-04-29 06:57:49 +02:00
parent 85f2165a1e
commit c4cf4cdec4
2 changed files with 16 additions and 2 deletions

View File

@@ -8,7 +8,11 @@ import { useDebounce } from "use-debounce";
import { useTranslations } from "next-intl";
import { MultiSelectTagInput } from "./multi-select/multi-select-tag-input";
export type SelectedUser = { id: string; text: string };
export type SelectedUser = {
id: string;
text: string;
ipdName?: string | null;
};
export type UsersSelectorProps = {
orgId: string;