proxy: fix connect command in routes portal (#5475)

This commit is contained in:
Caleb Doxsey 2025-02-13 11:44:18 -07:00 committed by GitHub
parent 3043e98fab
commit 6e22b7a19a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 29 additions and 2 deletions

View file

@ -76,7 +76,11 @@ const RouteCard: FC<RouteCardProps> = ({ route }) => {
{route.connect_command && (
<Box
component="span"
sx={{ fontFamily: '"DM Mono"', fontSize: "12px" }}
sx={{
fontFamily: '"DM Mono"',
fontSize: "12px",
wordBreak: "break-all",
}}
>
{route.connect_command}
</Box>