Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 19 additions & 17 deletions apps/web/src/components/settings/ConnectionsSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1649,23 +1649,25 @@ function ConfiguredCloudLinkRow({ canManageRelay }: { readonly canManageRelay: b

return (
<>
<SettingsRow
title="T3 Connect"
description={
managedTunnelActive
? "This environment is available to your other devices through T3 Connect."
: "Make this environment available to your other devices through T3 Connect."
}
status={operationError ?? primaryCloudLinkState.error}
control={
<CloudLinkSwitch
checked={managedTunnelActive}
disabled={!canManageRelay || !isSignedIn || primaryCloudLinkState.isPending || isBusy}
disabledReason={disabledReason}
onCheckedChange={(enabled) => void updateManagedTunnel(enabled)}
/>
}
/>
{window.desktopBridge ? (
<SettingsRow
title="T3 Connect"
description={
managedTunnelActive
? "This environment is available to your other devices through T3 Connect."
: "Make this environment available to your other devices through T3 Connect."
}
status={operationError ?? primaryCloudLinkState.error}
control={
<CloudLinkSwitch
checked={managedTunnelActive}
disabled={!canManageRelay || !isSignedIn || primaryCloudLinkState.isPending || isBusy}
disabledReason={disabledReason}
onCheckedChange={(enabled) => void updateManagedTunnel(enabled)}
/>
}
/>
) : null}
<SettingsRow
title="Publish agent activity"
description="Send activity from this environment to your mobile clients for push notifications and Live Activities. Works without a T3 Connect tunnel."
Expand Down
Loading