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>