Skip to content

Commit

Permalink
Add semicolon to remove provenance and revert default state
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWags committed Feb 12, 2025
1 parent 15e3796 commit 9405df9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
11 changes: 2 additions & 9 deletions packages/core/src/defaultConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,7 @@ export const DefaultConfig: UpsetConfig = {
setSizeLabels: true,
showHiddenSets: true,
setQuery: {
name: 'Query',
query: {
Set_Action: 'May',
Set_Adventure: 'No',
Set_Children: 'May',
Set_Comedy: 'May',
Set_Crime: 'No',
Set_Documentary: 'May',
},
name: '',
query: {},
},
};
2 changes: 1 addition & 1 deletion packages/upset/src/provenance/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ export function getActions(provenance: UpsetProvenance) {
addSetQueryAction(query),
),
removeSetQuery: (query: SetQuery) => provenance.apply(
`Remove Query ${query.name}`,
`Remove Query: ${query.name}`,
removeSetQueryAction(query),
),
};
Expand Down

0 comments on commit 9405df9

Please sign in to comment.