()
| 28 | export type Contact = (typeof initialData)[number] |
| 29 | |
| 30 | const seed = async () => { |
| 31 | const contacts = await localforage.getItem<Contact[]>('contacts') |
| 32 | if (!contacts) { |
| 33 | set(initialData) |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | seed() |
| 38 |
no test coverage detected
searching dependent graphs…