Skip to content

Commit d1a299a

Browse files
nickwesselmanclaude
andcommitted
Fix URL list visibility when shortcuts are unavailable
Only hide the URL list when hyperlinked shortcuts are actually rendered (canUseShortcuts && terminalSupportsHyperlinks), not just when the terminal supports hyperlinks. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent eea6597 commit d1a299a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/app/src/cli/services/dev/ui/components/DevSessionUI.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ const DevSessionUI: FunctionComponent<DevSesionUIProps> = ({
205205
<Text>{isShuttingDownMessage}</Text>
206206
) : (
207207
<>
208-
{status.isReady && !terminalSupportsHyperlinks() && (
208+
{status.isReady && !(canUseShortcuts && terminalSupportsHyperlinks()) && (
209209
<>
210210
{status.previewURL ? (
211211
<Text>

0 commit comments

Comments
 (0)