fix: Removed incorrect www from URL in DocsGPT Docs frontend (#1854)

This commit is contained in:
ananthakrishnan
2025-07-15 22:02:02 +05:30
parent 3a351f67e6
commit 789e65557a
2 changed files with 2 additions and 2 deletions

View File

@@ -60,7 +60,7 @@ const config = {
GitHub
</a>
{' | '}
<a href="https://www.blog.docsgpt.cloud/" target="_blank">
<a href="https://blog.docsgpt.cloud/" target="_blank">
Blog
</a>
</div>

View File

@@ -232,7 +232,7 @@ export default function NewAgent({ mode }: { mode: 'new' | 'edit' | 'draft' }) {
const data = await response.json();
const tools: OptionType[] = data.tools.map((tool: UserToolType) => ({
id: tool.id,
label: tool.customName,
label: tool.displayName,
icon: `/toolIcons/tool_${tool.name}.svg`,
}));
setUserTools(tools);