diff --git a/src/components/SponsorTimeEditComponent.tsx b/src/components/SponsorTimeEditComponent.tsx index 483ddbae..3de70141 100644 --- a/src/components/SponsorTimeEditComponent.tsx +++ b/src/components/SponsorTimeEditComponent.tsx @@ -239,7 +239,7 @@ class SponsorTimeEditComponent extends React.Component): void { // See if show more categories was pressed - if (!Config.config.categorySelections.some((category) => category.name === event.target.value)) { + if (event.target.value !== DEFAULT_CATEGORY && !Config.config.categorySelections.some((category) => category.name === event.target.value)) { const chosenCategory = event.target.value; event.target.value = DEFAULT_CATEGORY; @@ -369,4 +369,4 @@ class SponsorTimeEditComponent extends React.Component