Skip to content

Commit

Permalink
fix(dashboard): use correct case for importing components
Browse files Browse the repository at this point in the history
  • Loading branch information
manast committed Sep 23, 2022
1 parent fc1301e commit 63dc7a5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions packages/dashboard/src/App.tsx
Expand Up @@ -8,13 +8,13 @@ import {
} from "solid-js";
import { Routes, Route, useNavigate, useLocation } from "@solidjs/router";

const Login = lazy(() => import("./components/login"));
const Dashboard = lazy(() => import("./components/dashboard"));
const Profile = lazy(() => import("./components/profile"));
const Packages = lazy(() => import("./components/packages"));
const Teams = lazy(() => import("./components/teams"));
const TeamMembers = lazy(() => import("./components/teamMembers"));
const TeamPackages = lazy(() => import("./components/teamPackages"));
const Login = lazy(() => import("./components/Login"));
const Dashboard = lazy(() => import("./components/Dashboard"));
const Profile = lazy(() => import("./components/Profile"));
const Packages = lazy(() => import("./components/Packages"));
const Teams = lazy(() => import("./components/Teams"));
const TeamMembers = lazy(() => import("./components/TeamMembers"));
const TeamPackages = lazy(() => import("./components/TeamPackages"));

import { PackagesService } from "./services/packages";

Expand Down

0 comments on commit 63dc7a5

Please sign in to comment.