diff --git a/plugins/course-apps/teams/utils.js b/plugins/course-apps/teams/utils.js index b596f94f1..3bc8b39d3 100644 --- a/plugins/course-apps/teams/utils.js +++ b/plugins/course-apps/teams/utils.js @@ -1,7 +1,7 @@ /* eslint-disable import/prefer-default-export */ import { getConfig } from '@edx/frontend-platform'; -import { GroupTypes } from './constants'; +import { GroupTypes } from 'CourseAuthoring/data/constants'; /** * Check if a group type is enabled by the current configuration. diff --git a/plugins/course-apps/teams/utils.test.js b/plugins/course-apps/teams/utils.test.js index ebff4a361..3d36f0946 100644 --- a/plugins/course-apps/teams/utils.test.js +++ b/plugins/course-apps/teams/utils.test.js @@ -1,5 +1,5 @@ import { getConfig } from '@edx/frontend-platform'; -import { GroupTypes } from './constants'; +import { GroupTypes } from 'CourseAuthoring/data/constants'; import { isGroupTypeEnabled } from './utils'; jest.mock('@edx/frontend-platform', () => ({ getConfig: jest.fn() }));