Fix missing definition of unitId in InstructorToolbar.props

This commit is contained in:
stvn
2020-05-15 12:05:08 -07:00
parent b2fa93af13
commit fd951fb18a

View File

@@ -39,10 +39,12 @@ function InstructorToolbar(props) {
InstructorToolbar.propTypes = {
activeUnitLmsWebUrl: PropTypes.string,
unitId: PropTypes.string,
};
InstructorToolbar.defaultProps = {
activeUnitLmsWebUrl: undefined,
unitId: undefined,
};
const mapStateToProps = (state, props) => {