Skip to content

Commit db6cc1f

Browse files
committed
Revert chart
1 parent a69d82b commit db6cc1f

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

README.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -112,16 +112,10 @@ export const queryClient = new QueryClient({
112112

113113
```mermaid
114114
flowchart TD
115-
subgraph Browser["Browser"]
116-
IDBCache[["IDBCache"]]
117-
Application(["Client app"])
118-
WebWorker{{"Web Worker"}}
119-
IndexedDB[("IndexedDB")]
120-
end
121-
Application -- ".setItem()" --> IDBCache
122-
IDBCache -. Unencrypted chunks .-> WebWorker
123-
WebWorker -. Encrypted chunks .-> IDBCache
124-
IDBCache -. Encrypted chunks .-> IndexedDB
115+
Application([Client app]) --> |".setItem()"| IDBCache[[IDBCache]]
116+
IDBCache -.-> |"Unencrypted chunks"| WebWorker{{Web Worker}}
117+
WebWorker -.-> |"Encrypted chunks"| IDBCache
118+
IDBCache -.-> |"Encrypted chunks"| IndexedDB[(IndexedDB)]
125119
```
126120

127121
### getItem

0 commit comments

Comments
 (0)