fix(Footer): mudança de ordem das chamadas para aparecer os icons sem precisar do mutation

This commit is contained in:
Ramon Dias Ferreira 2022-12-18 21:05:19 -03:00
parent 114965e967
commit 2310f0512d

View File

@ -8,6 +8,8 @@ export default class Footer {
async init() {
this.list = await this.requestApi();
await this.selectors();
this.creditCardIconsHTML();
this.developedByIconsHTML();
if (window.location.hash === "#/cart") {
await this.shelfUpdate();
}
@ -15,8 +17,6 @@ export default class Footer {
this.shelfItens();
this.events();
this.addCarrossel();
this.creditCardIconsHTML();
this.developedByIconsHTML();
}