refactor: update ApprovalCard to display account names instead of emails across Gmail tools

This commit is contained in:
Anish Sarkar 2026-03-20 22:02:35 +05:30
parent 9b38626723
commit 282e913c50
3 changed files with 9 additions and 11 deletions

View file

@ -225,7 +225,7 @@ function ApprovalCard({
<div className="space-y-2">
<p className="text-xs font-medium text-muted-foreground">Gmail Account</p>
<div className="w-full rounded-md border border-input bg-muted/50 px-3 py-2 text-sm">
{account.email}
{account.name}
</div>
</div>
)}