Skip to content

Commit

Permalink
docs: add explanatory comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jesperhodge committed Mar 7, 2024
1 parent 3490ff7 commit e095d5d
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ import React from 'react';
import PropTypes from 'prop-types';
import { Button, Container } from '@openedx/paragon';
import { FormattedMessage, injectIntl } from '@edx/frontend-platform/i18n';

/* SelectableBox from Paragon currently has a bug as it misses a ContextProvider.
This is a temporary fix by overriding it with our own copy that includes the ContextProvider. */
// TODO: Replace this import with a paragon import once the bug is fixed and delete our copy of SelectableBox.
import SelectableBox from '../../../../../sharedComponents/SelectableBox';
import { ProblemTypes, ProblemTypeKeys, AdvanceProblemKeys } from '../../../../../data/constants/problem';
import messages from './messages';
Expand Down

0 comments on commit e095d5d

Please sign in to comment.