pull/4817/head
lianahus 6 months ago
parent 2bc71d2e88
commit 4d6aa1ac42
  1. 2
      apps/remix-ide/src/app/plugins/remixGuide.tsx
  2. 1
      libs/remix-ui/modal-dialog/src/lib/remix-ui-modal-dialog.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

@ -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()

Loading…
Cancel
Save