From 2205b8aec53aff53ccdfdca4e3d31e431ad8cb75 Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Thu, 28 Jun 2018 12:03:27 -0400 Subject: [PATCH] oops --- test/app/routes/blog/[slug].html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/app/routes/blog/[slug].html b/test/app/routes/blog/[slug].html index 7836fc7..7fdc8b4 100644 --- a/test/app/routes/blog/[slug].html +++ b/test/app/routes/blog/[slug].html @@ -19,7 +19,7 @@ return this.error(500, 'something went wrong'); } - return fetch(`blog/${slug}.json`).then(async r => { + return fetch(`blog/${slug}.json`).then(r => { if (r.status === 200) { return r.json().then(post => ({ post })); this.error(r.status, '')