import { Controller } from "stimulus";
// This is meant to be used with the "modal:closing" event, ie:
//
//
//
//
export default class extends Controller {
static values = { redirect: { type: Boolean, default: false } };
redirect() {
if (this.redirectValue) {
window.location.pathname = "/shop";
}
}
}