Skip to content

Commit

Permalink
style(lint): fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
brandyscarney committed Jul 8, 2019
1 parent e059fc8 commit 0031ab8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion core/src/components/alert/alert.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ export class Alert implements ComponentInterface, OverlayInterface {
input.checked = input === selectedInput;
}
this.activeId = selectedInput.id;
safeCall(selectedInput.handler, selectedInput)
safeCall(selectedInput.handler, selectedInput);
this.el.forceUpdate();
}

Expand Down
1 change: 0 additions & 1 deletion core/src/utils/overlays.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,6 @@ const overlayAnimation = async (
return hasCompleted;
};


export const eventMethod = <T>(element: HTMLElement, eventName: string): Promise<T> => {
let resolve: (detail: T) => void;
const promise = new Promise<T>(r => resolve = r);
Expand Down

0 comments on commit 0031ab8

Please sign in to comment.