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.

Allow null in Git URL validation

+3 -1
+3 -1
apps/web/src/pages/settings/repository/Repository.tsx
··· 18 18 .nullable() 19 19 .refine( 20 20 (val) => 21 - val === "" || /^(https?:\/\/.+\/.+\/.+|git@.+:.+\/.+)$/.test(val), 21 + val === "" || 22 + val === null || 23 + /^(https?:\/\/.+\/.+\/.+|git@.+:.+\/.+)$/.test(val), 22 24 "Must be a valid Git URL (e.g. https://tangled.org/user/repo or git@tangled.org:user/repo)", 23 25 ), 24 26 });