From 4d6aa1ac4299b67c8f13054d89b480c1f28cab70 Mon Sep 17 00:00:00 2001 From: lianahus Date: Wed, 29 May 2024 16:16:19 +0200 Subject: [PATCH] cleanup --- apps/remix-ide/src/app/plugins/remixGuide.tsx | 2 -- libs/remix-ui/modal-dialog/src/lib/remix-ui-modal-dialog.tsx | 1 - 2 files changed, 3 deletions(-) diff --git a/apps/remix-ide/src/app/plugins/remixGuide.tsx b/apps/remix-ide/src/app/plugins/remixGuide.tsx index 0a8b5e13b6..8112d2ff88 100644 --- a/apps/remix-ide/src/app/plugins/remixGuide.tsx +++ b/apps/remix-ide/src/app/plugins/remixGuide.tsx @@ -28,8 +28,6 @@ export class RemixGuidePlugin extends ViewPlugin { handleKeyDown: any handleEscape: any - //sectionToExpandedCell: [string, string][]; // Array of pairs where key is the section name and the second value is the name of the cell - constructor(appManager: RemixAppManager) { super(profile) this.appManager = appManager diff --git a/libs/remix-ui/modal-dialog/src/lib/remix-ui-modal-dialog.tsx b/libs/remix-ui/modal-dialog/src/lib/remix-ui-modal-dialog.tsx index 3f1c9a2788..fbeaafe439 100644 --- a/libs/remix-ui/modal-dialog/src/lib/remix-ui-modal-dialog.tsx +++ b/libs/remix-ui/modal-dialog/src/lib/remix-ui-modal-dialog.tsx @@ -47,7 +47,6 @@ export const ModalDialog = (props: ModalDialogProps) => { } const modalKeyEvent = (keyCode) => { - console.log("modal key", keyCode) if (keyCode === 27) { // Esc if (props.cancelFn) props.cancelFn()