Skip to content

Commit

Permalink
fix star imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Feroze Mohideen committed May 21, 2024
1 parent 4693bb8 commit e0848ba
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import _ from "lodash";
import * as stats from "simple-statistics";
import stats from "simple-statistics";

import {
type AvailableMetrics,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {
import _ from "lodash";
import { Link } from "react-router-dom";
import styled from "styled-components";
import * as traverse from "traverse";
import traverse from "traverse";

import useAuth from "shared/auth/useAuth";
import { Context } from "shared/Context";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import * as stats from "simple-statistics";
import stats from "simple-statistics";
import styled from "styled-components";
import chroma from "chroma-js";
import { NormalizedMetricsData } from "./types";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import _ from "lodash";
import React, { useCallback, useMemo, useRef } from "react";
import chroma from "chroma-js";
import * as stats from "simple-statistics";
import styled from "styled-components";
import { AreaClosed, Bar, Line, LinePath } from "@visx/shape";
import { curveMonotoneX } from "@visx/curve";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import _ from "lodash";
import * as stats from "simple-statistics";
import stats from "simple-statistics";

import {
type AvailableMetrics,
Expand Down

0 comments on commit e0848ba

Please sign in to comment.