From 60d934509c0ff7fd398f1ab8c5e2b0b8bfe1e50b Mon Sep 17 00:00:00 2001 From: Jeremy Penner Date: Wed, 27 Dec 2023 15:37:24 -0500 Subject: [PATCH] load bodies first --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index a5d0b8d..873dd17 100644 --- a/index.html +++ b/index.html @@ -22,11 +22,11 @@ } const displayEverything = async () => { + await displayBodyList("bodies.json", "bodies") await displayPropList("heads.json", "heads") await displayPropList("props.json", "props") await displayPropList("misc.json", "misc") await displayPropList("beta.json", "beta") - await displayBodyList("bodies.json", "bodies") } displayEverything()