Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(core): typo in cacheHit debug message (#3773)

Co-authored-by: Jovi De Croock <decroockjovi@gmail.com>

authored by

Jorrit Schippers
Jovi De Croock
and committed by
GitHub
8c7ac6e2 92f5c477

+6 -1
+5
.changeset/heavy-hairs-bow.md
··· 1 + --- 2 + "@urql/core": patch 3 + --- 4 + 5 + Correct typo in cacheHit debug message of the `debugExchange`
+1 -1
packages/core/src/exchanges/cache.ts
··· 72 72 ...(cachedResult 73 73 ? { 74 74 type: 'cacheHit', 75 - message: 'The result was successfully retried from the cache', 75 + message: 'The result was successfully retrieved from the cache', 76 76 } 77 77 : { 78 78 type: 'cacheMiss',