fix: deconstruct the reaction field (#937)

This commit is contained in:
Zowie 2023-06-06 22:28:50 +08:00 коммит произвёл GitHub
Родитель c32803f138
Коммит 223211a239
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -5,7 +5,7 @@
// https://developers.google.com/open-source/licenses/bsd
// Initialize the demo on install
chrome.runtime.onInstalled.addListener((reason) => {
chrome.runtime.onInstalled.addListener(({ reason }) => {
if (reason !== chrome.runtime.OnInstalledReason.INSTALL) {
return;
}