aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--recipes/chatgpt/package.json2
-rw-r--r--recipes/chatgpt/webview.js6
2 files changed, 6 insertions, 2 deletions
diff --git a/recipes/chatgpt/package.json b/recipes/chatgpt/package.json
index aeed764..f5dbfbc 100644
--- a/recipes/chatgpt/package.json
+++ b/recipes/chatgpt/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "chatgpt", 2 "id": "chatgpt",
3 "name": "ChatGPT", 3 "name": "ChatGPT",
4 "version": "1.0.0", 4 "version": "1.0.1",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://chat.openai.com/chat" 7 "serviceURL": "https://chat.openai.com/chat"
diff --git a/recipes/chatgpt/webview.js b/recipes/chatgpt/webview.js
index dd41f72..2ebc1f3 100644
--- a/recipes/chatgpt/webview.js
+++ b/recipes/chatgpt/webview.js
@@ -1 +1,5 @@
1module.exports = Ferdium => Ferdium; 1module.exports = Ferdium => {
2 Ferdium.handleDarkMode(isEnabled => {
3 localStorage.setItem('theme', isEnabled ? 'dark' : 'light' );
4 });
5};