Skip to content

Commit

Permalink
fix misnamed options in menu
Browse files Browse the repository at this point in the history
  • Loading branch information
Araxeus committed Jan 12, 2023
1 parent 759b384 commit 06eacea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugins/notifications/menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ module.exports = (_win, options) => [
]
},
{
label: "Toast Style",
label: "Style",
submenu: getToastStyleMenuItems(options)
},
]
Expand All @@ -71,8 +71,8 @@ function getToastStyleMenuItems(options) {
arr[index - 1] = {
label: snakeToCamel(name),
type: "radio",
checked: options.style === index,
click: () => config.set("style", index),
checked: options.toastStyle === index,
click: () => config.set("toastStyle", index),
};
}

Expand Down

0 comments on commit 06eacea

Please sign in to comment.