소스 검색

removed console.error on dismissModal without componentId

yogevbd 6 년 전
부모
커밋
d68e78feba
1개의 변경된 파일0개의 추가작업 그리고 3개의 파일을 삭제
  1. 0
    3
      lib/src/commands/Commands.ts

+ 0
- 3
lib/src/commands/Commands.ts 파일 보기

@@ -50,9 +50,6 @@ export class Commands {
50 50
   }
51 51
 
52 52
   public dismissModal(componentId) {
53
-    if (!componentId) {
54
-      console.error('dismissModal - componentId is missing');
55
-    }
56 53
     const result = this.nativeCommandsSender.dismissModal(componentId);
57 54
     this.commandsObserver.notify('dismissModal', { componentId });
58 55
     return result;