diff --git a/.github/actions/run-test/action.yml b/.github/actions/run-test/action.yml
index e4ea163fa01fe..e8c1aa179e293 100644
--- a/.github/actions/run-test/action.yml
+++ b/.github/actions/run-test/action.yml
@@ -55,6 +55,10 @@ runs:
npx playwright install --with-deps ${{ inputs.browsers-to-install }}
echo "::endgroup::"
shell: bash
+ - name: Setup upterm session
+ uses: owenthereal/action-upterm@v1
+ with:
+ limit-access-to-actor: true # Restrict to the user who triggered the workflow
- name: Run tests
if: inputs.shell == 'bash'
run: |
diff --git a/packages/devtools/src/devtools.tsx b/packages/devtools/src/devtools.tsx
index 520f7577dba7f..5d886e16f3f05 100644
--- a/packages/devtools/src/devtools.tsx
+++ b/packages/devtools/src/devtools.tsx
@@ -351,7 +351,7 @@ export const DevTools: React.FC<{ wsUrl?: string }> = ({ wsUrl }) => {
onKeyDown={onOmniboxKeyDown}
onFocus={e => e.target.select()}
/>
- {false &&
- }
- {false && selectedTab?.inspectorUrl && (
+ {selectedTab?.inspectorUrl && (