Fix Vite Plus lint issues

This commit is contained in:
Gregory Schier
2026-05-07 14:45:34 -07:00
parent 5d6ae6f038
commit f9ee53bc65
6 changed files with 8 additions and 5 deletions

View File

@@ -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)),
);
}, []);