feat(ui): make clipSkip activeLabel "Clip Skip"

we know its active if it displays
This commit is contained in:
psychedelicious 2023-07-07 21:42:16 +10:00
parent 74557c8b6e
commit a8fc75b6d0

View File

@ -11,7 +11,7 @@ const selector = createSelector(
(state: RootState) => {
const clipSkip = state.generation.clipSkip;
return {
activeLabel: clipSkip > 0 ? `Clip Skip Active` : undefined,
activeLabel: clipSkip > 0 ? 'Clip Skip' : undefined,
};
},
defaultSelectorOptions