diff --git a/src/layouts/partials/footer.html b/src/layouts/partials/footer.html index cb6b30a..b2d821a 100644 --- a/src/layouts/partials/footer.html +++ b/src/layouts/partials/footer.html @@ -121,16 +121,17 @@ integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+ fetch('https://app.tea.xyz/api/signups') .then(res => res.json()) .then(res => { + const signups = res.signups ? res.signups.toLocaleString() : "" if (!(localStorage['signup'] || '').match(/:::/)) { - $('#count').html(res.signups) + $('#count').html(signups) } - $('#count1').html(res.signups) - $('#count2').html(res.signups) - $('#count3').html(res.signups) - $('#count4').html(res.signups) - $('#count5').html(res.signups) - $('#count6').html(res.signups) - $('#count7').html(res.signups) + $('#count1').html(signups) + $('#count2').html(signups) + $('#count3').html(signups) + $('#count4').html(signups) + $('#count5').html(signups) + $('#count6').html(signups) + $('#count7').html(signups) }) } catch (e) { console.error(e)