function getConnectionButtonLabel()

in src/app/components/BottomToolbar.tsx [34:38]


  function getConnectionButtonLabel() {
    if (isConnected) return "Disconnect";
    if (isConnecting) return "Connecting...";
    return "Connect";
  }