Skip to content

Commit

Permalink
fix(web): fix deepscan errors
Browse files Browse the repository at this point in the history
  • Loading branch information
NdekoCode committed Oct 28, 2024
1 parent 964121d commit 13abd85
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,14 @@
"source.fixAll": "explicit",
"source.organizeImports": "never",
"source.sortMembers": "never",
"organizeImports": "never"
"organizeImports": "never",
"source.removeUnusedImports": "always"
},
"vsicons.presets.angular": true,
"deepscan.enable": true,
"cSpell.words": ["Timepicker"],
"cSpell.words": [
"Timepicker"
],
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
Expand Down
2 changes: 1 addition & 1 deletion apps/web/lib/layout/main-layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { PropsWithChildren } from 'react';
import { Footer, Navbar } from '.';
import { useAtomValue } from 'jotai';
import { fullWidthState } from '@app/stores/fullWidth';
import { SidebarProvider, SidebarInset, SidebarTrigger, useSidebar } from '@/components/ui/sidebar';
import { SidebarProvider, SidebarInset } from '@/components/ui/sidebar';
import { AppSidebar } from '@components/app-sidebar';
import MainSidebarTrigger from './MainSidebarTrigger';

Expand Down

0 comments on commit 13abd85

Please sign in to comment.