diff --git a/test/next/pages/optimistic/index.tsx b/test/next/pages/optimistic/index.tsx index dfb3be0c..fe9f04f5 100644 --- a/test/next/pages/optimistic/index.tsx +++ b/test/next/pages/optimistic/index.tsx @@ -29,7 +29,7 @@ export default function Page() { const hello = useHelloData() // this is for you, gaearon - const { data, error, loading, update, refetch, aborter } = hello + const { data, error, loading, update, refetch, aborter, optimistic } = hello const onRefreshClick = useCallback(() => { refetch() @@ -60,6 +60,9 @@ export default function Page() { ? "Aborted" : JSON.stringify(error)} +