Skip to content

Commit

Permalink
fix: link to loopback URL instead in notification area
Browse files Browse the repository at this point in the history
  • Loading branch information
psychedelicious committed Dec 24, 2024
1 parent 4bf2a52 commit d925ab0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/features/LaunchFlow/LaunchFlowLogViewer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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);
};
Expand Down

0 comments on commit d925ab0

Please sign in to comment.