Skip to content

Commit

Permalink
refactor(core): Tweak maxBreadcrumbs default/limit
Browse files Browse the repository at this point in the history
  • Loading branch information
bengourley committed Jan 2, 2020
1 parent 2792564 commit 7ea83a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/core/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ module.exports.schema = {
validate: value => typeof value === 'string' && value.length
},
maxBreadcrumbs: {
defaultValue: () => 20,
message: 'should be a number ≤40',
validate: value => intRange(0, 40)(value)
defaultValue: () => 25,
message: 'should be a number ≤100',
validate: value => intRange(0, 100)(value)
},
enabledBreadcrumbTypes: {
defaultValue: () => BREADCRUMB_TYPES,
Expand Down

0 comments on commit 7ea83a4

Please sign in to comment.