mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-05-12 19:00:03 +02:00
Fix Vite Plus lint issues
This commit is contained in:
@@ -274,7 +274,9 @@ function Sidebar({ className }: { className?: string }) {
|
||||
|
||||
const handleSendSelected = useCallback(async (items: SidebarModel[]) => {
|
||||
await Promise.all(
|
||||
items.filter((i) => i.model === "http_request").map((i) => sendAnyHttpRequest.mutate(i.id)),
|
||||
items
|
||||
.filter((i) => i.model === "http_request")
|
||||
.map((i) => sendAnyHttpRequest.mutateAsync(i.id)),
|
||||
);
|
||||
}, []);
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
"noUncheckedIndexedAccess": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"module": "ESNext",
|
||||
"moduleResolution": "Node",
|
||||
"moduleResolution": "bundler",
|
||||
"resolveJsonModule": true,
|
||||
"isolatedModules": true,
|
||||
"noEmit": true,
|
||||
|
||||
Reference in New Issue
Block a user