Skip to content

Commit f2a6681

Browse files
committed
fix: update URLs in chatGPT and Claude links for correct documentation path
1 parent 735cc7d commit f2a6681

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/AskIaButton.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,13 +140,13 @@ const isCopying = ref(false);
140140
const handleClickOutsideRef = ref(null);
141141
142142
const chatGPTLink = computed(() => {
143-
const fullUrl = `https://tools.docs.iex.ec${route.path}`;
143+
const fullUrl = `https://docs.iex.ec${route.path}`;
144144
const prompt = `Please research and analyze this page: ${fullUrl} so I can ask you questions about it. Once you have read it, prompt me with any questions I have. Do not post content from the page in your response. Any of my follow up questions must reference the site I gave you.`;
145145
return `https://chatgpt.com/?hints=search&q=${encodeURIComponent(prompt)}`;
146146
});
147147
148148
const claudeLink = computed(() => {
149-
const fullUrl = `https://tools.docs.iex.ec${route.path}`;
149+
const fullUrl = `https://docs.iex.ec${route.path}`;
150150
const prompt = `Please research and analyze this page: ${fullUrl} so I can ask you questions about it. Once you have read it, prompt me with any questions I have. Do not post content from the page in your response. Any of my follow up questions must reference the site I gave you.`;
151151
return `https://claude.ai/new?q=${encodeURIComponent(prompt)}`;
152152
});

0 commit comments

Comments
 (0)