From 52d240c96ef95b9690fe992c67102b4f3e424231 Mon Sep 17 00:00:00 2001 From: Brian Walters Date: Thu, 11 Apr 2024 14:38:37 -0500 Subject: [PATCH] Fix typo --- docs/utility-methods.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/utility-methods.md b/docs/utility-methods.md index 799508f4..71e0b342 100644 --- a/docs/utility-methods.md +++ b/docs/utility-methods.md @@ -142,7 +142,7 @@ Sanity's image document has fields for hotspot information, which you can query q("*") .filter("_type == 'pokemon'") .grab({ - cover: sanityImage("cover", { withHotpot: true }), // 👈 fetch hotspot info + cover: sanityImage("cover", { withHotspot: true }), // 👈 fetch hotspot info }); // -> { cover: { ..., hotspot: { x: number; y: number; height: number; width: number; } | null } }[]