From d925ab061e0035d31a369aa53e4f736cefec182f Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Tue, 24 Dec 2024 20:16:49 +1100 Subject: [PATCH] fix: link to loopback URL instead in notification area --- src/renderer/features/LaunchFlow/LaunchFlowLogViewer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/features/LaunchFlow/LaunchFlowLogViewer.tsx b/src/renderer/features/LaunchFlow/LaunchFlowLogViewer.tsx index 0270f06..48b5b16 100644 --- a/src/renderer/features/LaunchFlow/LaunchFlowLogViewer.tsx +++ b/src/renderer/features/LaunchFlow/LaunchFlowLogViewer.tsx @@ -13,7 +13,7 @@ import type { InvokeProcessStatus } from '@/shared/types'; const getMessage = (status: InvokeProcessStatus) => { if (status.type === 'running') { - return `Running at ${status.data.url}`; + return `Running at ${status.data.loopbackUrl}`; } return startCase(status.type); };