Skip to content

Commit

Permalink
chore: fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
qiYuei committed Dec 27, 2023
1 parent 4721e23 commit 4f6e0cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/shared/src/fetch-utils/wrapFetchWithCache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const wrapFetchWithCache: (fetch: Fetch) => Fetch = (fetch) => {
const lruCache = getGlobalCache();

const cachedFetch: Fetch = (input, init) => {
const fetchInput = input as Parameters<Fetch>[0];
const fetchInput = input ;
const cacheKey = getCacheKey(fetchInput);
const wrapFetchPromise = async (promise: Promise<Response>): Promise<Response> => {
try {
Expand Down

0 comments on commit 4f6e0cf

Please sign in to comment.