feat: update group translation

This commit is contained in:
lleohao
2024-09-03 02:59:17 +00:00
parent 055f45a483
commit 909b470df9
17 changed files with 86 additions and 109 deletions

View File

@ -7,9 +7,7 @@ import { useAddGroupMemberMutation } from "@/features/group/queries/group-query.
import { useTranslation } from "react-i18next";
export default function AddGroupMemberModal() {
const { t } = useTranslation("settings", {
keyPrefix: "workspace.group",
});
const { t } = useTranslation("group");
const { groupId } = useParams();
const [opened, { open, close }] = useDisclosure(false);
const [userIds, setUserIds] = useState<string[]>([]);