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

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

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

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