removed async from the redirect function
gitea/salix/pipeline/head There was a failure building this commit Details

This commit is contained in:
Pau 2022-10-18 13:07:10 +02:00
parent 470b4485d5
commit db12ceb369
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ class Controller extends Section {
redirect(this.$.$ctrl);
async function redirect(ctrl) {
function redirect(ctrl) {
window.location.href = `/#!/supplier/${ctrl.supplier.supplier.id}/fiscal-data`;
}
}