Skip to content

Commit

Permalink
Removed commented out code and fixed import order
Browse files Browse the repository at this point in the history
  • Loading branch information
dougmartin committed Mar 6, 2024
1 parent f966ef8 commit be00cf1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React, { useMemo, useState } from "react";
import classNames from "classnames";
import { Rubric, getFeedbackColor } from "./rubric-utils";
import { RubricSummaryModal } from "./rubric-summary-modal";

import css from "../../../../css/portal-dashboard/feedback/rubric-summary-icon.less";
import classNames from "classnames";
import { RubricSummaryModal } from "./rubric-summary-modal";

interface IProps {
rubric: Rubric;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ interface IProps {
export class RubricSummaryModal extends PureComponent<IProps> {

render() {
// const { rubric, criteriaCounts } = this.props;

return (

Check warning on line 21 in js/components/portal-dashboard/feedback/rubric-summary-modal.tsx

View check run for this annotation

Codecov / codecov/patch

js/components/portal-dashboard/feedback/rubric-summary-modal.tsx#L21

Added line #L21 was not covered by tests
<Modal animation={false} centered dialogClassName={css.lightbox} onHide={this.handleClose} show={true} data-cy="rubric-summary-modal">
Expand Down

0 comments on commit be00cf1

Please sign in to comment.