feat: remove archived status from recordings, deletions are now immediate
All checks were successful
Build and Push Backend Image / build (push) Successful in 45s
Build and Push Frontend Image / build (push) Successful in 4m3s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-07 11:42:13 +01:00
parent 754a236e51
commit fde0d63271
5 changed files with 18 additions and 8 deletions

View File

@@ -132,11 +132,7 @@
<div class="flex gap-1">
<Badge
variant={recording.status === "published" ? "default" : "outline"}
class={recording.status === "draft"
? "text-muted-foreground"
: recording.status === "archived"
? "text-yellow-600 border-yellow-500/40 bg-yellow-500/10"
: ""}
class={recording.status === "draft" ? "text-muted-foreground" : ""}
>
{recording.status}
</Badge>