Skip to content

Commit 5a6e89a

Browse files
committed
chore: lint
1 parent 343f6fd commit 5a6e89a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/components/dashboard/NavBar.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ export const NavBar: React.FC<NavBarProps> = ({
119119
} catch (error: any) {
120120
const status = error.response?.status;
121121
let errorKey = 'unknown';
122-
122+
123123
switch (status) {
124124
case 401:
125125
errorKey = 'unauthorized';
@@ -132,7 +132,7 @@ export const NavBar: React.FC<NavBarProps> = ({
132132
errorKey = 'network';
133133
}
134134
}
135-
135+
136136
notify(
137137
'error',
138138
t(`navbar.notifications.errors.logout.${errorKey}`, {
@@ -164,8 +164,8 @@ export const NavBar: React.FC<NavBarProps> = ({
164164
sx={{
165165
color: darkMode ? '#ffffff' : '#0000008A',
166166
'&:hover': {
167-
background: 'inherit'
168-
}
167+
background: 'inherit'
168+
}
169169
}}
170170
>
171171
{darkMode ? <LightMode /> : <DarkMode />}
@@ -257,7 +257,7 @@ export const NavBar: React.FC<NavBarProps> = ({
257257
padding: '8px',
258258
marginRight: '20px',
259259
'&:hover': {
260-
background: 'inherit'
260+
background: 'inherit'
261261
}
262262
}}>
263263
<Update sx={{ marginRight: '5px' }} />
@@ -338,7 +338,7 @@ export const NavBar: React.FC<NavBarProps> = ({
338338
docker-compose down
339339
<br />
340340
<br />
341-
# Remove existing backend and frontend images
341+
# Remove existing backend and frontend images
342342
<br />
343343
docker rmi getmaxun/maxun-frontend:latest getmaxun/maxun-backend:latest
344344
<br />
@@ -373,7 +373,7 @@ export const NavBar: React.FC<NavBarProps> = ({
373373
padding: '8px',
374374
marginRight: '10px',
375375
'&:hover': {
376-
background: 'inherit'
376+
background: 'inherit'
377377
}
378378
}}>
379379
<AccountCircle sx={{ marginRight: '5px' }} />

0 commit comments

Comments
 (0)