Skip to content

Commit

Permalink
fix(headless): collapsible key added to insightGenQAOptions type (#4912)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmitiche authored Jan 29, 2025
1 parent 673bfde commit 5bb7cd9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,14 @@ interface Tab {
conditions: Condition[];
}

interface InsightGenQAOptions extends InsightOption {
collapsible: boolean;
}

interface SettingsSection {
createArticle: InsightOption;
fullSearch: InsightOption;
genQA: InsightOption;
genQA: InsightGenQAOptions;
userActions: InsightUserActionOptions;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ describe('insight interface slice', () => {
},
genQA: {
enabled: false,
collapsible: true,
},
userActions: {
enabled: false,
Expand Down

0 comments on commit 5bb7cd9

Please sign in to comment.