From 0ca0f4a6cf5c1c3f5fefa299c597859c6ab60a30 Mon Sep 17 00:00:00 2001 From: lucaronin Date: Mon, 18 May 2026 10:20:06 +0200 Subject: [PATCH] fix: point update banner to release notes --- src/hooks/useUpdater.test.ts | 2 +- src/hooks/useUpdater.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hooks/useUpdater.test.ts b/src/hooks/useUpdater.test.ts index fb3a94f2..44fab893 100644 --- a/src/hooks/useUpdater.test.ts +++ b/src/hooks/useUpdater.test.ts @@ -279,7 +279,7 @@ describe('useUpdater', () => { }) expect(mockOpenExternalUrl).toHaveBeenCalledWith( - 'https://refactoringhq.github.io/tolaria/' + 'https://tolaria.md/releases/' ) }) diff --git a/src/hooks/useUpdater.ts b/src/hooks/useUpdater.ts index e5fcd6f9..24d81eb5 100644 --- a/src/hooks/useUpdater.ts +++ b/src/hooks/useUpdater.ts @@ -9,7 +9,7 @@ import { import { formatCalendarVersionForDisplay } from '../utils/calendarVersion' import { openExternalUrl } from '../utils/url' -const RELEASE_NOTES_URL = 'https://refactoringhq.github.io/tolaria/' +const RELEASE_NOTES_URL = 'https://tolaria.md/releases/' interface UpdateVersionInfo { version: string