Skip to content

Commit

Permalink
diff cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
macfarlandian committed Nov 13, 2020
1 parent 7509c12 commit 69de8e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
8 changes: 2 additions & 6 deletions public-dashboard-client/src/controls/CohortSelect.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ import PropTypes from "prop-types";
import React, { useState, useEffect } from "react";
import styled from "styled-components";
import checkMarkPath from "../assets/icons/checkMark.svg";
import highlightFade from "../utils/highlightFade";
import {
ControlLabel,
ControlValue,
Expand All @@ -33,6 +32,7 @@ import {
DropdownWrapper as DropdownWrapperBase,
HiddenSelect,
} from "./shared";
import { highlightFade } from "../utils";

const SELECT_ALL_ID = "ALL";

Expand Down Expand Up @@ -225,11 +225,7 @@ function CustomSelect({
>
<MenuItemContents>
{opt.label}
<MenuItemCheckMark
// alt="checked"
// aria-hidden
src={checkMarkPath}
/>
<MenuItemCheckMark src={checkMarkPath} />
</MenuItemContents>
</DropdownMenuItem>
);
Expand Down
2 changes: 1 addition & 1 deletion public-dashboard-client/src/controls/CohortSelect.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import userEvent from "@testing-library/user-event";
import useBreakpoint from "@w11r/use-breakpoint";
import React from "react";
import { act, render, within } from "../testUtils";
import highlightFade from "../utils/highlightFade";
import { highlightFade } from "../utils";
import CohortSelect from "./CohortSelect";

jest.mock("@w11r/use-breakpoint");
Expand Down

0 comments on commit 69de8e4

Please sign in to comment.