Skip to content

Commit

Permalink
fix lint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
andracc committed Dec 11, 2024
1 parent 30f4418 commit 8339cea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/App/AppLoggedIn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ import { Theme, ThemeProvider, createTheme } from "@mui/material/styles";
import { ReactElement, useEffect, useMemo, useState } from "react";
import { Route, Routes } from "react-router-dom";

import { updateUser } from "backend";
import { getCurrentUser } from "backend/localStorage";
import { AnalyticsConsent } from "components/AnalyticsConsent/AnalyticsConsent";
import DatePickersLocalizationProvider from "components/App/DatePickersLocalizationProvider";
import SignalRHub from "components/App/SignalRHub";
import AppBar from "components/AppBar/AppBarComponent";
Expand All @@ -17,9 +20,6 @@ import { Path } from "types/path";
import FontContext, { ProjectFonts } from "utilities/fontContext";
import { getProjCss } from "utilities/fontCssUtilities";
import { routerPath } from "utilities/pathUtilities";
import { AnalyticsConsent } from "components/AnalyticsConsent/AnalyticsConsent";
import { updateUser } from "backend";
import { getCurrentUser } from "backend/localStorage";

const BaseGoalScreen = loadable(
() => import("goals/DefaultGoal/BaseGoalScreen")
Expand Down

0 comments on commit 8339cea

Please sign in to comment.