aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbraxtonhall2022-10-24 04:25:20 +0000
committerbraxtonhall2022-10-24 04:25:20 +0000
commitb2e6c29a5c18fb0cd2b53f94c64fd0bce47797a6 (patch)
tree27450b58335abf1e9af96909712c139705de2bc5
parent01f4656a8c394ab1016ef303a72a53d3de3c16f1 (diff)
Remove silly console log
-rw-r--r--index.html9
1 files changed, 4 insertions, 5 deletions
diff --git a/index.html b/index.html
index 1d32e83..cbbc280 100644
--- a/index.html
+++ b/index.html
@@ -82,13 +82,12 @@
const cmpName = (a, b) => a.name < b.name ? -1 : 1;
- $(document).ready(async _ => {
- const contributors = await getContributors()
+ $(document).ready(
+ _ => getContributors()
.then(people => people.sort(cmpName))
.then(people => people.map(toPersonNode))
- .then(nodes => $("#contributors").append(...nodes));
- console.log(contributors);
- });
+ .then(nodes => $("#contributors").append(...nodes))
+ );
</script>
</body>
</html>