the universal sandbox runtime for agents and humans. pocketenv.io
sandbox openclaw agent claude-code vercel-sandbox deno-sandbox cloudflare-sandbox atproto sprites daytona
7
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove unused import and fix invalidateQueries

+1 -2
-1
apps/web/src/pages/settings/secrets/Secrets.tsx
··· 12 12 import dayjs from "dayjs"; 13 13 import Pagination from "../../../components/pagination"; 14 14 import ConfirmDelete from "../../../components/confirmdelete/ConfirmDelete"; 15 - import { set } from "react-hook-form"; 16 15 17 16 const PAGE_SIZE = 12; 18 17 const SKELETON_ROWS = 8;
+1 -1
apps/web/src/pages/settings/volumes/Volumes.tsx
··· 71 71 72 72 const handleConfirmDelete = async () => { 73 73 await deleteVolume(selectedVolumeId!); 74 - queryClient.invalidateQueries(["volumes", data?.sandbox?.id]); 74 + queryClient.invalidateQueries({ queryKey: ["volumes", data?.sandbox?.id] }); 75 75 setSelectedVolumeId(undefined); 76 76 setSelectedVolume(undefined); 77 77 };