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.

Add token input and Save button to Tailscale page

+14 -1
+14 -1
apps/web/src/pages/settings/tailscale/Tailscale.tsx
··· 20 20 <div className="w-[95%] m-auto"> 21 21 <div className="flex flex-row items-center"> 22 22 <h1 className="mb-2 text-xl flex-1">Tailscale</h1> 23 - <button className="btn btn-primary font-semibold">Add Token</button> 24 23 </div> 25 24 <p className="opacity-60 mb-5"> 26 25 Connect your Sandbox to your Tailscale network for secure private 27 26 access to services and devices. 28 27 </p> 28 + <div className="input input-bordered w-xl input-lg text-[15px] font-semibold bg-transparent"> 29 + <input 30 + type="password" 31 + className={`grow`} 32 + placeholder="Enter your Tailscale token" 33 + autoComplete="off" 34 + data-1p-ignore 35 + data-lpignore="true" 36 + data-form-type="other" 37 + /> 38 + </div> 39 + <div> 40 + <button className="btn btn-primary font-semibold mt-8">Save</button> 41 + </div> 29 42 </div> 30 43 </> 31 44 </Main>