Skip to content

Commit 8ee306c

Browse files
committed
feat: update uninstall URL and add feedback link in popup
1 parent 155f6ee commit 8ee306c

2 files changed

Lines changed: 20 additions & 10 deletions

File tree

src/background/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import { generateSeedPrompt } from "../utils/seeder";
2020

2121
chrome.runtime.onInstalled.addListener(() => {
2222
chrome.runtime.setUninstallURL(
23-
"https://vchan-in.github.io/migrate/uninstall"
23+
"https://docs.google.com/forms/d/e/1FAIpQLSfWyb7DJUjVJLzRTWwV208JI4dqLGPjoExx7uJNBsPeT2_4lA/viewform?usp=pp_url&entry.1264997455=AI+Chat+Backup"
2424
);
2525
});
2626

src/popup/App.tsx

Lines changed: 19 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export default function App() {
5151
useEffect(() => {
5252
msg<ThreadMeta[]>({ type: "GET_VAULT_INDEX" })
5353
.then(setIndex)
54-
.catch(() => {})
54+
.catch(() => { })
5555
.finally(() => setLoading(false));
5656
}, []);
5757

@@ -115,14 +115,24 @@ export default function App() {
115115
Visit ChatGPT, Claude, Gemini, or Grok to save chats.
116116
</p>
117117

118-
<a
119-
href="https://hacklm.substack.com"
120-
target="_blank"
121-
rel="noreferrer noopener"
122-
className="text-[10px] text-faint font-mono hover:text-muted transition text-center w-full block"
123-
>
124-
we write things &rarr;
125-
</a>
118+
<div className="flex justify-between items-center w-full px-2">
119+
<a
120+
href="https://docs.google.com/forms/d/e/1FAIpQLSfWyb7DJUjVJLzRTWwV208JI4dqLGPjoExx7uJNBsPeT2_4lA/viewform?usp=pp_url&entry.1264997455=AI+Chat+Backup"
121+
target="_blank"
122+
rel="noreferrer noopener"
123+
className="text-[10px] text-faint font-mono hover:text-muted transition"
124+
>
125+
&larr; share feedback
126+
</a>
127+
<a
128+
href="https://hacklm.substack.com"
129+
target="_blank"
130+
rel="noreferrer noopener"
131+
className="text-[10px] text-faint font-mono hover:text-muted transition"
132+
>
133+
we write things &rarr;
134+
</a>
135+
</div>
126136
</div>
127137
);
128138
}

0 commit comments

Comments
 (0)