Skip to content

Commit

Permalink
Fix typo in the code example in "Introducing Relay Hooks" (#3399)
Browse files Browse the repository at this point in the history
Summary:
Fix typo in the code example about prefetching data

Pull Request resolved: #3399

Reviewed By: alunyov

Differential Revision: D26980740

Pulled By: poteto

fbshipit-source-id: 81c3280104f88591139acff595c1894b1cd01b70
  • Loading branch information
Lucas Weng authored and facebook-github-bot committed Mar 11, 2021
1 parent f5a1e27 commit 27a2de8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website-v2/blog/2021-03-09-introducing-relay-hooks.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ function UserLink({ userId, userName }) {
{isPopoverVisible && queryReference && (
<Popover>
<React.Suspense fallback={<Glimmer />}>
<UserPopoverContent queryRef={queryRef} />
<UserPopoverContent queryRef={queryReference} />
</React.Suspense>
</Popover>
)}
Expand Down

0 comments on commit 27a2de8

Please sign in to comment.