Skip to content

Commit

Permalink
fix(metadata-editor): Disable AI suggestions taxonomy (#3754)
Browse files Browse the repository at this point in the history
feat(metadata-editor): Disable AI suggestions taxonomy
  • Loading branch information
JChan106 authored Nov 26, 2024
1 parent 03b8eb5 commit e0db445
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@ function useSidebarMetadataFetcher(

return fields.map(field => {
const value = answer[field.key];
if (!value) {
// TODO: @box/metadadata-editor does not support AI suggestions, enable once supported
if (!value || field.type === 'taxonomy') {
return field;
}
return {
Expand Down

0 comments on commit e0db445

Please sign in to comment.