From 46480aa6c44096ae43d6400939135bc760187366 Mon Sep 17 00:00:00 2001 From: Noah Gundotra Date: Thu, 30 May 2024 23:59:35 -0400 Subject: [PATCH] Fix DAS query (#344) --- app/providers/compressed-nft.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/providers/compressed-nft.tsx b/app/providers/compressed-nft.tsx index 3aff1aa8..db584847 100644 --- a/app/providers/compressed-nft.tsx +++ b/app/providers/compressed-nft.tsx @@ -64,6 +64,9 @@ export const useCompressedNft = makeCache<{ address: string; url: string }, Comp id: address, }, }), + headers: { + 'content-type': 'application/json', + }, method: 'POST', }) .then(response => response.json())