type checks

This commit is contained in:
Dax Raad
2025-11-11 01:56:01 -05:00
parent 995b23787c
commit d685aa38ef
15 changed files with 24 additions and 24 deletions

View File

@@ -45,7 +45,7 @@ const listKeys = query(async (workspaceID: string) => {
export function KeySection() {
const params = useParams()
const keys = createAsync(() => listKeys(params.id))
const keys = createAsync(() => listKeys(params.id!))
const submission = useSubmission(createKey)
const [store, setStore] = createStore({ show: false })