From a7c694f248d587694ab84a86aefd538b3dcc5abf Mon Sep 17 00:00:00 2001 From: Christian Byrne Date: Fri, 12 Dec 2025 14:42:46 -0800 Subject: [PATCH] fix: update pricing table link (#7402) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary Update to https://docs.comfy.org/tutorials/partner-nodes/pricing -- actual link to the pricing table (before was sending to just the Partner Nodes docs). ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-7402-fix-update-pricing-table-link-2c76d73d365081f2b890ee6887c0314e) by [Unito](https://www.unito.io) --- src/components/topbar/CurrentUserPopover.test.ts | 2 +- src/components/topbar/CurrentUserPopover.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/topbar/CurrentUserPopover.test.ts b/src/components/topbar/CurrentUserPopover.test.ts index 48477b934..4b1cb114c 100644 --- a/src/components/topbar/CurrentUserPopover.test.ts +++ b/src/components/topbar/CurrentUserPopover.test.ts @@ -248,7 +248,7 @@ describe('CurrentUserPopover', () => { // Verify window.open was called with the correct URL expect(window.open).toHaveBeenCalledWith( - 'https://docs.comfy.org/tutorials/api-nodes/overview#api-nodes', + 'https://docs.comfy.org/tutorials/partner-nodes/pricing', '_blank' ) diff --git a/src/components/topbar/CurrentUserPopover.vue b/src/components/topbar/CurrentUserPopover.vue index 9a1fad9b7..adad38de4 100644 --- a/src/components/topbar/CurrentUserPopover.vue +++ b/src/components/topbar/CurrentUserPopover.vue @@ -205,7 +205,7 @@ const handleTopUp = () => { const handleOpenPartnerNodesInfo = () => { window.open( - buildDocsUrl('/tutorials/api-nodes/overview#api-nodes', { + buildDocsUrl('/tutorials/partner-nodes/pricing', { includeLocale: true }), '_blank'