Skip to content

Commit 4a1343d

Browse files
committed
polishing for 1.0.0
1 parent 1716954 commit 4a1343d

7 files changed

+11
-8
lines changed

src/background/functions/saveFromContextMenu.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ const saveFromContextMenu = async (saveBehavior: "append" | "override") => {
1313
const tabId = tabs[0].id!
1414

1515
try {
16-
const res = await chrome.tabs.sendMessage(tabId, "fetchFullChat")
16+
const res = await chrome.tabs.sendMessage(
17+
tabId,
18+
"bard-to-notion_fetchFullChat"
19+
)
1720
const { prompts, answers, url, title } = res
1821

1922
const storage = new Storage()

src/popup/AboutPopup.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function AboutPopup() {
2020
<li>
2121
<a
2222
className="link text-sm"
23-
href="https://theo-lartigau.notion.site/FAQ-50befa31f01a495b9d634e3f575dd4ba"
23+
href="https://theo-lartigau.notion.site/FAQ-214e7413e07e4887aa84339b64c17296?pvs=4"
2424
target="_blank">
2525
{i18n("about_FAQ")}
2626
</a>

src/popup/ErrorPopup.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ function ErrorPopup() {
7575
{i18n("autosave_error_desc")}
7676
<a
7777
className="link text-sm"
78-
href="https://theo-lartigau.notion.site/FAQ-50befa31f01a495b9d634e3f575dd4ba"
78+
href="https://theo-lartigau.notion.site/FAQ-214e7413e07e4887aa84339b64c17296?pvs=4"
7979
target="_blank">
8080
{i18n("autosave_error_desc_faq")}
8181
</a>

src/popup/IndexPopup.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ function IndexPopup() {
355355
{error?.status === 401 && (
356356
<a
357357
className="link text-sm"
358-
href="https://theo-lartigau.notion.site/FAQ-50befa31f01a495b9d634e3f575dd4ba"
358+
href="https://theo-lartigau.notion.site/FAQ-214e7413e07e4887aa84339b64c17296?pvs=4"
359359
target="_blank">
360360
{i18n("about_FAQ")}
361361
</a>

src/popup/PremiumPopup.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ function PremiumPopup() {
7171
<>
7272
<a
7373
className="block link text-center mb-2"
74-
href="https://theolartigau.gumroad.com/l/chatgpt-to-notion"
74+
href="https://theolartigau.gumroad.com/l/bard-to-notion"
7575
target="_blank">
7676
{i18n("premium_cta")}
7777
</a>
@@ -100,7 +100,7 @@ function PremiumPopup() {
100100
<p className="text-sm text-center font-bold">{i18n("premium_desc")}</p>
101101
<a
102102
className="block link text-center mb-2"
103-
href="https://theolartigau.gumroad.com/l/chatgpt-to-notion"
103+
href="https://theolartigau.gumroad.com/l/bard-to-notion"
104104
target="_blank">
105105
{i18n("premium_cta")}
106106
</a>

src/popup/SavePopup.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ export default function SavePopup() {
333333
{error?.status === 401 && (
334334
<a
335335
className="link text-sm"
336-
href="https://theo-lartigau.notion.site/FAQ-50befa31f01a495b9d634e3f575dd4ba"
336+
href="https://theo-lartigau.notion.site/FAQ-214e7413e07e4887aa84339b64c17296?pvs=4"
337337
target="_blank">
338338
{i18n("about_FAQ")}
339339
</a>

src/popup/SettingsPopup.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ function SettingsPopup() {
176176
)}
177177
<a
178178
className="link text-sm"
179-
href="https://theo-lartigau.notion.site/FAQ-50befa31f01a495b9d634e3f575dd4ba"
179+
href="https://theo-lartigau.notion.site/FAQ-214e7413e07e4887aa84339b64c17296?pvs=4"
180180
target="_blank">
181181
{i18n("about_FAQ")}
182182
</a>

0 commit comments

Comments
 (0)