From 6a335bfa772a0114ce81012df221b9c1b0dc8d22 Mon Sep 17 00:00:00 2001 From: MananTank Date: Thu, 29 May 2025 20:09:50 +0000 Subject: [PATCH] Fix requests to thirdwebstorage-dev.com not set with secret-key (#7205) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ## PR-Codex overview This PR focuses on updating the `fetch.ts` file in the `thirdweb` package to include a new URL for the thirdweb storage service. ### Detailed summary - Added `".thirdwebstorage-dev.com"` to the list of URLs. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` ## Summary by CodeRabbit - **Chores** - Updated the list of recognized thirdweb service domains to include ".thirdwebstorage-dev.com". --- packages/thirdweb/src/utils/fetch.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/thirdweb/src/utils/fetch.ts b/packages/thirdweb/src/utils/fetch.ts index 20d51f10537..cffc639da2a 100644 --- a/packages/thirdweb/src/utils/fetch.ts +++ b/packages/thirdweb/src/utils/fetch.ts @@ -127,6 +127,7 @@ const THIRDWEB_DOMAINS = [ // dev domains ".thirdweb.dev", ".thirdweb-dev.com", + ".thirdwebstorage-dev.com", ] as const; export const IS_THIRDWEB_URL_CACHE = new LruMap(4096);