Commit 257b43e9 authored by Shaphen Pangburn's avatar Shaphen Pangburn

Resolve merge conflicts

parents bd0a4437 1e9f2de0
...@@ -12,6 +12,12 @@ server.port=8080 ...@@ -12,6 +12,12 @@ server.port=8080
#promos.apiUrl=http://40.118.215.99:8082 #promos.apiUrl=http://40.118.215.99:8082
#orders.apiUrl=http://138.91.251.222:8086 #orders.apiUrl=http://138.91.251.222:8086
# UNCOMMENT FOR PRODUCTION DEPLOYMENT
#products.apiUrl=http://13.64.175.185:8080
#promos.apiUrl=http://40.118.215.99:8082
#orders.apiUrl=http://138.91.251.222:8086
# UNCOMMENT FOR LOCAL TESTING
products.apiUrl=http://localhost:8083 products.apiUrl=http://localhost:8083
promos.apiUrl=http://localhost:8082 promos.apiUrl=http://localhost:8082
orders.apiUrl=http://localhost:8084 orders.apiUrl=http://localhost:8084
...@@ -29,7 +29,7 @@ const OrderHistory = () => { ...@@ -29,7 +29,7 @@ const OrderHistory = () => {
<div>Please login to place orders!</div> <div>Please login to place orders!</div>
) : null} ) : null}
<div id="orders"> <div id="orders">
{orderHistory.map((order, ind) => { {orderHistory.reverse().map((order, ind) => {
return <Order order={order} key={ind} alt={ind}/>; return <Order order={order} key={ind} alt={ind}/>;
})} })}
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment