diff --git a/src/components/main/index.js b/src/components/main/index.js index ece9b80cc..ed704d623 100644 --- a/src/components/main/index.js +++ b/src/components/main/index.js @@ -20,7 +20,7 @@ import { renderNarrativeToggle } from "../narrative/renderNarrativeToggle"; import { Sidebar } from "./sidebar"; import { calcPanelDims, calcStyles } from "./utils"; import { PanelsContainer, sidebarTheme } from "./styles"; -import ErrorBoundary from "../../util/errorBoundry"; +import ErrorBoundary from "../../util/errorBoundary"; import Spinner, { PanelSpinner } from "../framework/spinner"; import MainDisplayMarkdown from "../narrative/MainDisplayMarkdown"; import MobileNarrativeDisplay from "../narrative/MobileNarrativeDisplay"; diff --git a/src/components/map/map.js b/src/components/map/map.js index d28a01f39..1a9c59075 100644 --- a/src/components/map/map.js +++ b/src/components/map/map.js @@ -22,7 +22,7 @@ import { // import { incommingMapPNG } from "../download/helperFunctions"; import { timerStart, timerEnd } from "../../util/perf"; import { tabSingle, darkGrey, lightGrey } from "../../globalStyles"; -import ErrorBoundary from "../../util/errorBoundry"; +import ErrorBoundary from "../../util/errorBoundary"; import { getMapTilesSettings } from "../../util/globals"; import Legend from "../tree/legend/legend"; import "../../css/mapbox.css"; diff --git a/src/components/measurements/index.js b/src/components/measurements/index.js index 2e647bfbc..ae09dc72a 100644 --- a/src/components/measurements/index.js +++ b/src/components/measurements/index.js @@ -4,7 +4,7 @@ import { isEqual, orderBy } from "lodash"; import { NODE_VISIBLE } from "../../util/globals"; import { getColorByTitle, getTipColorAttribute } from "../../util/colorHelpers"; import { determineLegendMatch } from "../../util/tipRadiusHelpers"; -import ErrorBoundary from "../../util/errorBoundry"; +import ErrorBoundary from "../../util/errorBoundary"; import Flex from "../framework/flex"; import Card from "../framework/card"; import Legend from "../tree/legend/legend"; diff --git a/src/components/splash/index.js b/src/components/splash/index.js index 8dbb2a767..8dd658339 100644 --- a/src/components/splash/index.js +++ b/src/components/splash/index.js @@ -2,7 +2,7 @@ import React from "react"; import { connect } from "react-redux"; import DefaultSplashContent from "./splash"; import { hasExtension, getExtension } from "../../util/extensions"; -import ErrorBoundary from "../../util/errorBoundry"; +import ErrorBoundary from "../../util/errorBoundary"; import { fetchJSON } from "../../util/serverInteraction"; import { getServerAddress, controlsHiddenWidth } from "../../util/globals"; import { changePage } from "../../actions/navigation"; diff --git a/src/components/tree/tree.js b/src/components/tree/tree.js index a5d67bb13..d617ecf9c 100644 --- a/src/components/tree/tree.js +++ b/src/components/tree/tree.js @@ -14,7 +14,7 @@ import { tabSingle, darkGrey, lightGrey } from "../../globalStyles"; import { renderTree } from "./reactD3Interface/initialRender"; import Tangle from "./tangle"; import { attemptUntangle } from "../../util/globals"; -import ErrorBoundary from "../../util/errorBoundry"; +import ErrorBoundary from "../../util/errorBoundary"; import { untangleTreeToo } from "./tangle/untangling"; import { sortByGeneOrder } from "../../util/treeMiscHelpers"; diff --git a/src/util/errorBoundry.js b/src/util/errorBoundary.js similarity index 100% rename from src/util/errorBoundry.js rename to src/util/errorBoundary.js