diff --git a/.github/workflows/update_galata_references.yaml b/.github/workflows/update_galata_references.yaml index c61646228..4c73b9855 100644 --- a/.github/workflows/update_galata_references.yaml +++ b/.github/workflows/update_galata_references.yaml @@ -28,7 +28,6 @@ jobs: node-version: [18.x] steps: - - name: React to the triggering comment run: | gh api repos/${{ github.repository }}/issues/comments/${{ github.event.comment.id }}/reactions --raw-field 'content=+1' @@ -96,11 +95,3 @@ jobs: github_token: ${{ secrets.GITHUB_TOKEN }} server_url: http-get://localhost:8866/ test_folder: ui-tests - - - uses: jupyterlab/maintainer-tools/.github/actions/update-snapshots@main - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - server_url: http-get://localhost:8866/ - test_folder: ui-tests - start_server_script : start:progressive_rendering - update_script: test:update:progressive_rendering diff --git a/packages/voila/src/plugins/widget/plugins.ts b/packages/voila/src/plugins/widget/plugins.ts index 8236e75c1..1aa7312c6 100644 --- a/packages/voila/src/plugins/widget/plugins.ts +++ b/packages/voila/src/plugins/widget/plugins.ts @@ -201,7 +201,6 @@ export const renderOutputsProgressivelyPlugin: JupyterFrontEndPlugin = { widgetManager.modelRegistered.connect(modelRegisteredHandler); const wsUrl = getExecutionURL(kernelId); const ws = new WebSocket(wsUrl); - getExecutionURL(); ws.onmessage = async (msg) => { const { action, payload }: IExecutionMessage = JSON.parse(msg.data); switch (action) {