From 2a3ab9e11d59cadb506c32eedba8cb0bcd0b0021 Mon Sep 17 00:00:00 2001 From: Philipinho <16838612+Philipinho@users.noreply.github.com> Date: Mon, 19 Jan 2026 13:22:12 +0000 Subject: [PATCH] fix --- .../src/features/space/components/multi-member-select.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/client/src/features/space/components/multi-member-select.tsx b/apps/client/src/features/space/components/multi-member-select.tsx index 4a0a7fe8..ab077b49 100644 --- a/apps/client/src/features/space/components/multi-member-select.tsx +++ b/apps/client/src/features/space/components/multi-member-select.tsx @@ -9,6 +9,7 @@ import { IconGroupCircle } from "@/components/icons/icon-people-circle.tsx"; import { useTranslation } from "react-i18next"; interface MultiMemberSelectProps { + value?: string[]; onChange: (value: string[]) => void; } @@ -33,7 +34,7 @@ const renderMultiSelectOption: MultiSelectProps["renderOption"] = ({ ); -export function MultiMemberSelect({ onChange }: MultiMemberSelectProps) { +export function MultiMemberSelect({ value, onChange }: MultiMemberSelectProps) { const { t } = useTranslation(); const [searchValue, setSearchValue] = useState(""); const [debouncedQuery] = useDebouncedValue(searchValue, 500); @@ -85,6 +86,7 @@ export function MultiMemberSelect({ onChange }: MultiMemberSelectProps) { return (