Skip to content

Commit

Permalink
smol fixes that were missed
Browse files Browse the repository at this point in the history
  • Loading branch information
lalalune committed Mar 9, 2025
1 parent 1e9a42e commit 69ccd56
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"agent": "turbo run start --filter=@elizaos/the-org",
"dev": "turbo run build --filter=./packages/core && turbo run dev --filter=!./packages/core --filter=!./packages/docs --concurrency=20",
"release": "bun run build && bun lint && npx lerna publish --no-private --force-publish && bun lint",
"release:alpha": "npx lerna publish prerelease --preid alpha --dist-tag alpha --no-private --force-publish --loglevel verbose && bun lint",
"release:alpha": "bun run build && bun lint && npx lerna publish prerelease --preid alpha --dist-tag alpha --no-private --force-publish --loglevel verbose && bun lint",
"docker:build": "bash ./scripts/docker.sh build",
"docker:run": "bash ./scripts/docker.sh run",
"docker:bash": "bash ./scripts/docker.sh bash",
Expand Down
1 change: 0 additions & 1 deletion packages/core/src/actions/choice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,6 @@ export const choiceAction: Action = {
{ option: selectedOption },
selectedTask,
);
await runtime.getDatabaseAdapter().deleteTask(selectedTask.id);
await callback({
text: `Selected option: ${selectedOption} for task: ${selectedTask.name}`,
actions: ["CHOOSE_OPTION"],
Expand Down

0 comments on commit 69ccd56

Please sign in to comment.