diff --git a/cmd/ui/src/views/GroupManagement/GroupManagement.test.tsx b/cmd/ui/src/views/GroupManagement/GroupManagement.test.tsx
index 97d9fd4735..5bf84960e3 100644
--- a/cmd/ui/src/views/GroupManagement/GroupManagement.test.tsx
+++ b/cmd/ui/src/views/GroupManagement/GroupManagement.test.tsx
@@ -54,7 +54,13 @@ describe('GroupManagement', () => {
const setup = async () =>
await act(async () => {
const user = userEvent.setup();
- const screen = render();
+ const screen = render(, {
+ initialState: {
+ global: {
+ options: { domain: {} },
+ },
+ },
+ });
return { user, screen };
});