From 648412dd6dd8465dfb58cd13a01f35c070301854 Mon Sep 17 00:00:00 2001 From: Brian Kirkpatrick Date: Wed, 4 Mar 2026 13:02:28 -0800 Subject: [PATCH] added missing del --- README.md | 2 +- store/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7f53eba..062e549 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Lit + Zustand Architecture -A modern, no-build web application architecture using Lit web components with Zustand state management and IndexedDB persistence. +A simple (but modern & scalable) no-build web application architecture using Lit web components with Zustand state management and IndexedDB persistence. ## For TSX/React Developers diff --git a/store/index.js b/store/index.js index 5fdf883..86bedc5 100644 --- a/store/index.js +++ b/store/index.js @@ -1,6 +1,6 @@ import { createStore } from 'zustand/vanilla' import { persist, createJSONStorage } from 'zustand/middleware' -import { get, set } from 'idb-keyval' +import { get, set, del } from 'idb-keyval' const storage = createJSONStorage(() => ({ getItem: async (name) => {