Skip to content

Commit

Permalink
fix(web): import utils incorrect (#1166)
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackHole1 committed Dec 2, 2021
1 parent 21001e5 commit 26ead1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/flat-web/src/pages/RoomDetailPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ import { RoomStatus } from "../../api-middleware/flatServer/constants";
import { message } from "antd";
import { FLAT_WEB_BASE_URL } from "../../constants/process";
import { useTranslation } from "react-i18next";
import { ServerRequestError } from "renderer-app/src/utils/error/server-request-error";
import { RequestErrorCode } from "renderer-app/src/constants/error-code";
import { ServerRequestError } from "../../utils/error/server-request-error";
import { RequestErrorCode } from "../../constants/error-code";

export const RoomDetailPage = observer(function RoomDetailPage() {
const { t } = useTranslation();
Expand Down

0 comments on commit 26ead1f

Please sign in to comment.