Prior there was an issue that when a review was added, it would take a moment for the review to show. By adding a small delay (200ms) this is fixed. We may wish to make the async function addReview([reviewData]) be able to take in a call back function that runs when the async function completes. That would require some more re-writing; for now this is a simple solution.
Prior there was an issue that when a review was added, it would take a moment for the review to show. By adding a small delay (200ms) this is fixed. We may wish to make the async function
addReview([reviewData])
be able to take in a call back function that runs when the async function completes. That would require some more re-writing; for now this is a simple solution.