Skip to content

Commit 0e7bae7

Browse files
committed
Replaced string concatenation w/ template literal ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions/tree/main/amazongpt]
1 parent 16aa3b7 commit 0e7bae7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

chatgpt/amazongpt/amazongpt.user.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// @description Add AI chat & product/category summaries to Amazon shopping, powered by the latest LLMs like GPT-4o!
44
// @author KudoAI
55
// @namespace https://kudoai.com
6-
// @version 2026.1.27
6+
// @version 2026.1.27.1
77
// @license MIT
88
// @icon https://amazongpt.kudoai.com/assets/images/icons/app/black-gold-teal/icon48.png?v=8e8ed1c
99
// @icon64 https://amazongpt.kudoai.com/assets/images/icons/app/black-gold-teal/icon64.png?v=8e8ed1c
@@ -209,7 +209,7 @@
209209
Object.entries(JSON5.parse(responseText)).filter(([, api]) => !api.disabled))),
210210
url: `${app.urls.aiwebAssets}/data/ai-chat-apis.json5`
211211
})))
212-
apis.AIchatOS.userID = '#/chat/' + Date.now()
212+
apis.AIchatOS.userID = `#/chat/${Date.now()}`
213213

214214
// Init SETTINGS
215215
app.config ??= {}

0 commit comments

Comments
 (0)