1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2024-12-29 02:55:52 +00:00

no log: Move auth page to special-page folder

This commit is contained in:
LASER-Yi 2021-08-15 20:46:56 +08:00
parent 6f9c7f3da2
commit 56729e0dbb
3 changed files with 2 additions and 2 deletions

View file

@ -15,9 +15,9 @@ import { useNotification } from "../@redux/hooks/site";
import store from "../@redux/store"; import store from "../@redux/store";
import "../@scss/index.scss"; import "../@scss/index.scss";
import Socketio from "../@socketio"; import Socketio from "../@socketio";
import Auth from "../Auth";
import { LoadingIndicator, ModalProvider } from "../components"; import { LoadingIndicator, ModalProvider } from "../components";
import Sidebar from "../Sidebar"; import Sidebar from "../Sidebar";
import Auth from "../special-pages/AuthPage";
import LaunchError from "../special-pages/LaunchError"; import LaunchError from "../special-pages/LaunchError";
import UIError from "../special-pages/UIError"; import UIError from "../special-pages/UIError";
import { useBaseUrl, useHasUpdateInject } from "../utilites"; import { useBaseUrl, useHasUpdateInject } from "../utilites";

View file

@ -12,7 +12,7 @@ import { Redirect } from "react-router-dom";
import { useReduxStore } from "../@redux/hooks/base"; import { useReduxStore } from "../@redux/hooks/base";
import logo from "../@static/logo128.png"; import logo from "../@static/logo128.png";
import { SystemApi } from "../apis"; import { SystemApi } from "../apis";
import "./style.scss"; import "./AuthPage.scss";
interface Props {} interface Props {}