Skip to content

Commit

Permalink
Fixed missing braces
Browse files Browse the repository at this point in the history
  • Loading branch information
gabehamilton committed Nov 6, 2024
1 parent 7110585 commit 9eae49f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion shopper/agent/template.html
Original file line number Diff line number Diff line change
Expand Up @@ -172,9 +172,10 @@
}, 100)

placeOrderTimer = setTimeout(function() {
if(agent_order_id && agent_order_id !== "" && !orderCompleted)
if(agent_order_id && agent_order_id !== "" && !orderCompleted) {
console.log('sending order to wallet', agent_order_id, orderCompleted)
placeOrder(agent_order_id);
}
}, 500)


Expand Down

0 comments on commit 9eae49f

Please sign in to comment.