fix(loyalty): remove card_number display from transactions list

TransactionResponse doesn't include card_number, so the template was
showing '-' under every customer name. Removed the nonexistent field.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-23 21:44:45 +01:00
parent 95e4956216
commit 46f8d227b8

View File

@@ -60,7 +60,6 @@
</div>
<div>
<p class="font-semibold" x-text="tx.customer_name || 'Unknown'"></p>
<p class="text-xs text-gray-600 dark:text-gray-400" x-text="tx.card_number || '-'"></p>
</div>
</div>
</td>