Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@

### Features

* **mentor:** add prompt caching toggle to agent settings ([2c90236](https://github.com/iblai/os/commit/2c9023664f6be4818787f3a33773f08e6cae8167))
- **mentor:** add prompt caching toggle to agent settings ([2c90236](https://github.com/iblai/os/commit/2c9023664f6be4818787f3a33773f08e6cae8167))

### Chores

* **tests:** add playwright tests for prompt caching ([29cf427](https://github.com/iblai/os/commit/29cf42769b53bc26f12ddaabbafccd32452c9ddb))
- **tests:** add playwright tests for prompt caching ([29cf427](https://github.com/iblai/os/commit/29cf42769b53bc26f12ddaabbafccd32452c9ddb))

## [0.76.0](https://github.com/iblai/os/compare/v0.75.17...v0.76.0) (2026-06-19)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,10 @@ describe('ManageCategoriesModal', () => {
});
});
expect(toast.success).toHaveBeenCalledWith('Category created');
// Input should reset after success
expect(input.value).toBe('');
// Input should reset after success. The reset runs in the post-await
// microtask of handleCreate, so poll for the committed re-render rather
// than asserting synchronously (which races React's commit under load).
await waitFor(() => expect(input.value).toBe(''));
});

it('does nothing when the new category name is blank', () => {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"dependencies": {
"@iblai/agent-ai": "2.5.2",
"@iblai/iblai-api": "4.166.0-ai",
"@iblai/iblai-js": "1.19.2",
"@iblai/iblai-js": "1.20.4",
"@iblai/iblai-web-mentor": "1.3.4",
"@livekit/components-react": "2.8.1",
"@livekit/components-styles": "1.1.4",
Expand Down
38 changes: 19 additions & 19 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading