From f1ad099ea61f75cf1d43c9a117f7c78a29e87741 Mon Sep 17 00:00:00 2001 From: Hernani Fernandes Date: Thu, 15 Sep 2022 14:28:52 +0200 Subject: [PATCH] remove semicolon --- docs/start/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/start/overview.md b/docs/start/overview.md index 79da934d57..5d69428ca9 100644 --- a/docs/start/overview.md +++ b/docs/start/overview.md @@ -393,7 +393,7 @@ Instead of waiting for the data for the next page, you can [`defer`][defer] data // defer enables suspense for the un-awaited promises return defer({ issue, comments, history }); }} -/>; +/> function Issue() { const { issue, history, comments } = useLoaderData();