fix: include group members in change request author filter

This commit is contained in:
Scott Wilson
2025-11-04 16:42:23 -08:00
parent 1f38eed974
commit cab093b805

View File

@@ -107,7 +107,7 @@ export const SecretApprovalRequest = () => {
});
const { permission } = useProjectPermission();
const { data: members } = useGetWorkspaceUsers(projectId);
const { data: members } = useGetWorkspaceUsers(projectId, true);
const isSecretApprovalScreen = Boolean(selectedApprovalId);
const { requestId } = search;