added missing del

This commit is contained in:
authentik Default Admin 2026-03-04 13:02:28 -08:00
parent 28d57323b6
commit 648412dd6d
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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) => {