Skip to content

Commit abf9abd

Browse files
committed
Fix helptext prop 🤦‍♂️
1 parent ed7ba0d commit abf9abd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/src/modules/resources/SSHButton/SSHButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export const SSHButton: FC<SSHButtonProps> = ({
8585
const SSHStep = (props: { helpText: string; codeExample: string }) => (
8686
<li style={{ listStylePosition: "inside" }}>
8787
<HelpTooltipText style={{ display: "inline" }}>
88-
<strong css={styles.codeExampleLabel}>Connect to the agent:</strong>
88+
<strong css={styles.codeExampleLabel}>{props.helpText}</strong>
8989
</HelpTooltipText>
9090
<CodeExample secret={false} code={props.codeExample} />
9191
</li>

0 commit comments

Comments
 (0)