fix(ui): label cached paths relative to sandbox home

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
Dotta 2026-09-08 10:03:29 -05:00
parent 630b002c75
commit f3c67d50da
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ export function CachedTaskFilesButton({ issue, currentUserId }: { issue: TaskCon
</TabsList>
{folders.map(({ scope, label, ownerId }) => (
<TabsContent key={scope} value={scope} className="flex min-h-0 flex-col gap-3 overflow-auto">
<p className="text-xs text-muted-foreground">Cached copy of $HOME/{scope}/ · Select files to move to trash; restore them from the Trash tab</p>
<p className="text-xs text-muted-foreground">Cached sandbox folder: [sandbox home]/{scope}/ · Select files to move to trash; restore them from the Trash tab</p>
{!ownerId ? (
<p className="text-sm text-muted-foreground">No {label.toLowerCase()} is bound to this task. This folder is empty and unbound.</p>
) : scope === "user" && ownerId !== currentUserId ? (