From 2310f0512d83e5fb2fa8a572da0208518d3e1cfb Mon Sep 17 00:00:00 2001 From: Ramon Dias Ferreira Date: Sun, 18 Dec 2022 21:05:19 -0300 Subject: [PATCH] =?UTF-8?q?fix(Footer):=20mudan=C3=A7a=20de=20ordem=20das?= =?UTF-8?q?=20chamadas=20para=20aparecer=20os=20icons=20sem=20precisar=20d?= =?UTF-8?q?o=20mutation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- checkout/src/arquivos/js/components/Footer.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/checkout/src/arquivos/js/components/Footer.js b/checkout/src/arquivos/js/components/Footer.js index 844be3d..79c1692 100644 --- a/checkout/src/arquivos/js/components/Footer.js +++ b/checkout/src/arquivos/js/components/Footer.js @@ -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(); }