chore: format code

pull/2572/head
GitHub Action 2025-09-12 18:46:43 +00:00
parent f2b4891ff0
commit 4983d255dd
1 changed files with 1 additions and 4 deletions

View File

@ -66,10 +66,7 @@ const removeKey = action(async (form: FormData) => {
if (!id) return { error: "ID is required" }
const workspaceID = form.get("workspaceID")?.toString()
if (!workspaceID) return { error: "Workspace ID is required" }
return json(
await withActor(() => Key.remove({ id }), workspaceID),
{ revalidate: listKeys.key },
)
return json(await withActor(() => Key.remove({ id }), workspaceID), { revalidate: listKeys.key })
}, "key.remove")
/////////////////////////////////////