Skip to content

Commit bdcaf98

Browse files
NathanJollyvctrchu
andauthored
Apply suggestions from code review
Co-authored-by: Victor Chu <[email protected]>
1 parent 6237dc7 commit bdcaf98

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/ui-extensions/docs/surfaces/point-of-sale/reference/examples/order-api/basic-usage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const PostPurchaseAction = () => {
2020
<Section title="Order Information">
2121
<Text>Order ID: {order.id}</Text>
2222
<Text>Order Name: {order.name}</Text>
23-
{order.customerId && <Text>Customer ID: {order.customerId}</Text>}
23+
{order.customerId && <Text>Order Customer ID: {order.customerId}</Text>}
2424
</Section>
2525
</ScrollView>
2626
</Screen>

packages/ui-extensions/docs/surfaces/point-of-sale/reference/examples/order-api/display-in-block.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ const OrderDetailsBlock = () => {
1414
return (
1515
<POSBlock>
1616
<POSBlockRow>
17-
<Text>Order {order.name}</Text>
17+
<Text>Order Name: {order.name}</Text>
1818
<Text>Order ID {order.id.toString()}</Text>
1919
{order.customerId && (
20-
<Text>Customer ID {order.customerId.toString()}</Text>
20+
<Text>Order Customer ID {order.customerId.toString()}</Text>
2121
)}
2222
</POSBlockRow>
2323
</POSBlock>

0 commit comments

Comments
 (0)