Skip to content

Commit

Permalink
修正匯入問題
Browse files Browse the repository at this point in the history
  • Loading branch information
joe committed Apr 23, 2023
1 parent 6a96b98 commit 77ebeef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/content.js
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@ const defaultQuickReplyMessageListKO = [
const locale = chrome.i18n.getUILanguage();

switch (locale) {

case "zh-TW":
defaultPromptList = defaultPromptListTW;
defaultQuickReplyMessageList = defaultQuickReplyMessageListTW;
Expand Down Expand Up @@ -3164,8 +3164,8 @@ const defaultQuickReplyMessageListKO = [
JSON.stringify(defaultQuickReplyMessageList)
);

promptList = defaultPromptList;
quickReplyMessageList = defaultQuickReplyMessageList;
promptList = JSON.parse(JSON.stringify(defaultPromptList));
quickReplyMessageList = JSON.parse(JSON.stringify(defaultQuickReplyMessageList));

generateButtons();

Expand Down

0 comments on commit 77ebeef

Please sign in to comment.