From 7f4ea55798c463c63f6504331bfac67d4e954249 Mon Sep 17 00:00:00 2001
From: Ilias Haddad <42832768+IliasHad@users.noreply.github.com>
Date: Tue, 9 Jul 2024 00:53:40 +0100
Subject: [PATCH] Update remix.mdx

---
 get-started/quickstart/remix.mdx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/get-started/quickstart/remix.mdx b/get-started/quickstart/remix.mdx
index 9ca78bc..a537d2d 100644
--- a/get-started/quickstart/remix.mdx
+++ b/get-started/quickstart/remix.mdx
@@ -77,7 +77,7 @@ async function helloWorld(name: string) {
 }
 
 // the function must be wrapped with `defer()` and exported as default
-export default defer(syncContacts);
+export default defer(helloWorld);
 ```
 
 </Accordion>