Tweak wording

main
Ashelyn Dawn 4 years ago
parent 9c3d156d9b
commit f10d245b20

@ -16,7 +16,7 @@ export default function Orders({orders}){
return ( return (
<> <>
<ActionBar title="Orders"/> <ActionBar title="Orders"/>
<h4>Need to ship:</h4> <h4>Unsent:</h4>
<Table <Table
columns={[ columns={[
{name: 'Purchased', extractor: getPurchaseTime}, {name: 'Purchased', extractor: getPurchaseTime},
@ -31,7 +31,7 @@ export default function Orders({orders}){
rows={unshippedOrders.map(order => ({id: order.uuid, ...order}))} rows={unshippedOrders.map(order => ({id: order.uuid, ...order}))}
/> />
<h4>Shipped:</h4> <h4>Sent:</h4>
<Table <Table
columns={[ columns={[
{name: 'Purchased', extractor: getPurchaseTime}, {name: 'Purchased', extractor: getPurchaseTime},

Loading…
Cancel
Save