Skip to content

Commit c0e195c

Browse files
committed
Display Bill ID
1 parent 785e163 commit c0e195c

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/pages/quotes/QuotePage.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,11 +604,17 @@ function Quote({ value, isFetching }: { value: InfoReply; isFetching: boolean })
604604
<Table className="my-2">
605605
<TableBody>
606606
<TableRow>
607-
<TableCell className="font-bold">ID: </TableCell>
607+
<TableCell className="font-bold">Quote ID: </TableCell>
608608
<TableCell>
609609
<span className="font-mono">{value.id}</span>
610610
</TableCell>
611611
</TableRow>
612+
<TableRow>
613+
<TableCell className="font-bold">Bill ID: </TableCell>
614+
<TableCell>
615+
<span className="font-mono">{value.bill.id}</span>
616+
</TableCell>
617+
</TableRow>
612618
{(value.status === "Offered" || value.status === "Accepted") && "keyset_id" in value ? (
613619
<TableRow>
614620
<TableCell className="font-bold">Keyset ID: </TableCell>

0 commit comments

Comments
 (0)