mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-05 05:17:51 +08:00
only checking funbox if funbox is not none
This commit is contained in:
parent
bf0e9c27cb
commit
6e62eb5bcd
1 changed files with 1 additions and 1 deletions
|
@ -110,7 +110,7 @@ export async function activate(funbox) {
|
|||
return;
|
||||
}
|
||||
}
|
||||
if (Config.mode === "zen" || Config.mode == "quote") {
|
||||
if (funbox !== "none" && (Config.mode === "zen" || Config.mode == "quote")) {
|
||||
if (funboxInfo?.type != "style") {
|
||||
Notifications.add(
|
||||
`${Misc.capitalizeFirstLetter(
|
||||
|
|
Loading…
Reference in a new issue