From fa2a014120ebbfa48350b150990300708a35eb93 Mon Sep 17 00:00:00 2001 From: DecentM Date: Tue, 9 Jan 2018 23:44:17 +0100 Subject: [PATCH] fix: the enabled prop isn't actually needed --- content/install-hook-openusercss.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/content/install-hook-openusercss.js b/content/install-hook-openusercss.js index 184985d9..29f6e3dc 100644 --- a/content/install-hook-openusercss.js +++ b/content/install-hook-openusercss.js @@ -81,8 +81,7 @@ const sendInstallCallback = data => { allowedOrigins.forEach(origin => { window.postMessage({ 'type': 'ouc-install-callback', - 'enabled': data.enabled, - 'key': data.key + 'key': data.key }, origin); }); };