setArgs(e.target.value)}
@@ -144,8 +158,11 @@ const Sidebar = ({
) : (
<>
-
+
setSseUrl(e.target.value)}
@@ -157,6 +174,7 @@ const Sidebar = ({
variant="outline"
onClick={() => setShowBearerToken(!showBearerToken)}
className="flex items-center w-full"
+ aria-expanded={showBearerToken}
>
{showBearerToken ? (
@@ -167,8 +185,14 @@ const Sidebar = ({
{showBearerToken && (
-
+
setBearerToken(e.target.value)}
@@ -187,6 +211,7 @@ const Sidebar = ({
onClick={() => setShowEnvVars(!showEnvVars)}
className="flex items-center w-full"
data-testid="env-vars-button"
+ aria-expanded={showEnvVars}
>
{showEnvVars ? (
@@ -201,6 +226,7 @@ const Sidebar = ({