Skip to content

Commit

Permalink
fix import paths
Browse files Browse the repository at this point in the history
  • Loading branch information
vinceau committed Jan 4, 2024
1 parent 1ffb3c7 commit 55e7fc7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/renderer/app/create.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ import { useAppListeners } from "@/lib/hooks/use_app_listeners";
import { usePageNavigationShortcuts } from "@/lib/hooks/use_shortcuts";
import { lazyLoadConsoleMirrorPage } from "@/pages/console_mirror/load";
import { HomePage } from "@/pages/home/home_page";
import { LoadingPage } from "@/pages/loading/loading_page";
import { NotFoundPage } from "@/pages/not_found/not_found_page";
import { lazyLoadQuickStartPage } from "@/pages/quick_start/load";
import { lazyLoadReplaysPage } from "@/pages/replays/load";
import { lazyLoadSettingsPage } from "@/pages/settings/load";
Expand All @@ -24,8 +26,6 @@ import { createServiceProvider } from "@/services";
import type { Services } from "@/services/types";
import { slippiTheme } from "@/styles/theme";

import { LoadingPage } from "../pages/loading/loading_page";
import { NotFoundPage } from "../pages/not_found/not_found_page";
import type { MainMenuItem } from "./app";
import { App as AppImpl } from "./app";

Expand Down
3 changes: 1 addition & 2 deletions src/renderer/containers/login_form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,10 @@ import { create } from "zustand";
import { combine } from "zustand/middleware";

import { useAsync } from "@/lib/hooks/use_async";
import { QuickStartHeader } from "@/pages/quick_start/quick_start_header/quick_start_header";
import { useServices } from "@/services";
import type { AuthUser } from "@/services/auth/types";

import { QuickStartHeader } from "../pages/quick_start/quick_start_header/quick_start_header";

// Store this data in a hook so we can avoid dealing with setting state on unmount errors
const useLoginStore = create(
combine(
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/pages/quick_start/steps/login_step.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import styled from "@emotion/styled";
import Box from "@mui/material/Box";
import React from "react";

import { LoginForm } from "../../../containers/login_form";
import { LoginForm } from "@/containers/login_form";

const FormContainer = styled.div`
margin: 0 auto;
Expand Down

0 comments on commit 55e7fc7

Please sign in to comment.