We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9753b7c commit 05fa9ffCopy full SHA for 05fa9ff
1 file changed
src/utils/skipProfiles.ts
@@ -74,7 +74,7 @@ export function getSkipProfileNum(key: "minDuration"): number {
74
75
function getSkipProfileValue<T>(key: keyof CustomConfiguration): T {
76
const profile = getSkipProfile();
77
- if (profile && profile[key] !== undefined) {
+ if (profile && profile[key] !== null) {
78
return profile[key] as T;
79
}
80
0 commit comments