From 420575bae6f46e2334567bb1295fbb5f3b122b91 Mon Sep 17 00:00:00 2001 From: bunsenstraat Date: Tue, 5 Nov 2024 15:53:59 +0100 Subject: [PATCH] CI fix --- apps/remix-ide-e2e/src/commands/hidePopupPanel.ts | 4 ++-- apps/remix-ide/src/app/components/popup-panel.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/remix-ide-e2e/src/commands/hidePopupPanel.ts b/apps/remix-ide-e2e/src/commands/hidePopupPanel.ts index 29baee5523..dd646722a5 100644 --- a/apps/remix-ide-e2e/src/commands/hidePopupPanel.ts +++ b/apps/remix-ide-e2e/src/commands/hidePopupPanel.ts @@ -9,8 +9,8 @@ class HidePopupPanel extends EventEmitter { return localStorage.getItem('did_show_popup_panel') }, [], function (result) { if (!result.value) { - browser.waitForElementVisible('*[data-id="aiStatusButton"]') - .click('*[data-id="aiStatusButton"]') + browser.waitForElementVisible('*[data-id="popupPanelToggle"]') + .click('*[data-id="popupPanelToggle"]') } done() }) diff --git a/apps/remix-ide/src/app/components/popup-panel.tsx b/apps/remix-ide/src/app/components/popup-panel.tsx index 4ebc8a77bd..5d27c38828 100644 --- a/apps/remix-ide/src/app/components/popup-panel.tsx +++ b/apps/remix-ide/src/app/components/popup-panel.tsx @@ -104,7 +104,7 @@ export class PopupPanel extends AbstractPanel {
+