Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
archeoss committed Feb 2, 2024
1 parent 86a881d commit a37efe4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/login/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { removeEmpty } from '@appTypes/common.ts';
import defaultTheme from '@layouts/DefaultTheme.ts';
import ThemeRegistry from '@layouts/ThemeRegistry.tsx';
import { Alert, Box, Button, Grid, Snackbar, TextField } from '@mui/material';
import BobLogo from 'public/logo.svg';
import { navigate } from 'astro:transitions/client';
import BobLogo from 'public/logo.svg';
import React, { type FormEvent, useState } from 'react';

import style from './login.module.css';
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/navbar/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { cookieAuthId, eraseCookie, getCookie } from '@appTypes/common.ts';
import { Context, refreshTimes } from '@appTypes/context.ts';
import { isLocation, type NavLocation } from '@appTypes/navigation.ts';
import defaultTheme from '@layouts/DefaultTheme.ts';
import { navigate } from 'astro:transitions/client';
import { ExitToApp } from '@mui/icons-material';
import {
AppBar,
Expand All @@ -21,6 +20,7 @@ import {
} from '@mui/material';
import { ThemeProvider } from '@mui/material/styles';
import { useStore } from '@nanostores/react';
import { navigate } from 'astro:transitions/client';
import BrandMark from 'public/brandmark.svg';
import React, { useEffect, useState } from 'react';

Expand Down

0 comments on commit a37efe4

Please sign in to comment.