I’m not sure how this relates to woocommerce but I’ve been able to fix this by changing line 617
in sweetdate/assets/scripts/app.js
from
if (data.redirecturl == null) {
to
if (data.redirecturl == null || data.redirecturl == false) {
I guess this would also work
if (! data.redirecturl) {