diff options
| author | GitHub Action <[email protected]> | 2025-09-12 18:46:43 +0000 |
|---|---|---|
| committer | GitHub Action <[email protected]> | 2025-09-12 18:46:43 +0000 |
| commit | 4983d255dd2c6b5879001a8898e97ccd13188410 (patch) | |
| tree | 02896d19043a74288e49a0c66e58ed294a9d5d4b /cloud | |
| parent | f2b4891ff04b694e21b7af5b7f908e9d08fb7a57 (diff) | |
| download | opencode-4983d255dd2c6b5879001a8898e97ccd13188410.tar.gz opencode-4983d255dd2c6b5879001a8898e97ccd13188410.zip | |
chore: format code
Diffstat (limited to 'cloud')
| -rw-r--r-- | cloud/app/src/routes/workspace/[id].tsx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/cloud/app/src/routes/workspace/[id].tsx b/cloud/app/src/routes/workspace/[id].tsx index 8f0b9bd55..de4e47a8a 100644 --- a/cloud/app/src/routes/workspace/[id].tsx +++ b/cloud/app/src/routes/workspace/[id].tsx @@ -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") ///////////////////////////////////// |
