Skip to content

Commit 9f70e8e

Browse files
committed
fix: red envelope send issue
1 parent 6a44726 commit 9f70e8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/components/common/general/table-data.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ const TransactionTableRow = React.memo(React.forwardRef<HTMLTableRowElement, {
162162
</Badge>
163163
</TableCell>
164164
<TableCell className="text-[11px] font-medium whitespace-nowrap text-center py-1">
165-
{order.status === 'pending' || order.status === 'expired' || order.type === 'community' ? (
165+
{order.status === 'pending' || order.status === 'expired' || order.type === 'community' || order.type === 'red_envelope_send' ? (
166166
<div className="text-muted-foreground">-</div>
167167
) : (
168168
<TooltipProvider>

0 commit comments

Comments
 (0)