瀏覽代碼

Fix imports

jnfrati 4 年之前
父節點
當前提交
46b0254aae
共有 2 個文件被更改,包括 2 次插入2 次删除
  1. 1 1
      dashboard/src/App.tsx
  2. 1 1
      dashboard/src/main/MainWrapper.tsx

+ 1 - 1
dashboard/src/App.tsx

@@ -1,6 +1,6 @@
 import React, { Component } from "react";
 import { BrowserRouter } from "react-router-dom";
-import PorterErrorBoundary from "shared/PorterErrorBoundary";
+import PorterErrorBoundary from "shared/error_handling/PorterErrorBoundary";
 import styled, { createGlobalStyle } from "styled-components";
 
 import MainWrapper from "./main/MainWrapper";

+ 1 - 1
dashboard/src/main/MainWrapper.tsx

@@ -4,7 +4,7 @@ import { ContextProvider } from "../shared/Context";
 import Main from "./Main";
 import { RouteComponentProps, withRouter } from "react-router";
 import AuthProvider from "shared/auth/AuthContext";
-import MainWrapperErrorBoundary from "./MainWrapperErrorBoundary";
+import MainWrapperErrorBoundary from "shared/error_handling/MainWrapperErrorBoundary";
 
 type PropsType = RouteComponentProps & {};