fix(site): use correct order of agent/workspace in AgentSSHButton (#18328)

This commit is contained in:
Mathias Fredriksson
2025-06-13 12:33:23 +03:00
committed by GitHub
parent dd150264bc
commit 949ab4b2f6

View File

@ -56,7 +56,7 @@ export const AgentSSHButton: FC<AgentSSHButtonProps> = ({
/>
<SSHStep
helpText="Connect to the agent:"
codeExample={`ssh ${workspaceName}.${agentName}.${workspaceOwnerUsername}.${sshSuffix}`}
codeExample={`ssh ${agentName}.${workspaceName}.${workspaceOwnerUsername}.${sshSuffix}`}
/>
</Stack>
</ol>