mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
fix: add type assertion for proof-of-concept validation config access
This commit is contained in:
parent
b29b393de5
commit
fa096e013d
1 changed files with 1 additions and 1 deletions
|
|
@ -77,7 +77,7 @@ export async function newTaskToolWithValidation(
|
|||
}
|
||||
|
||||
// Get validation configuration from state
|
||||
const state = await provider.getState()
|
||||
const state = (await provider.getState()) as any // Type assertion for proof-of-concept
|
||||
const validationConfig = {
|
||||
enabled: state.subtaskValidationEnabled ?? false,
|
||||
validationApiConfigId: state.subtaskValidationApiConfigId,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue