Skip to content

Commit 0031ab8

Browse files
committed
style(lint): fix lint issues
1 parent e059fc8 commit 0031ab8

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

core/src/components/alert/alert.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ export class Alert implements ComponentInterface, OverlayInterface {
223223
input.checked = input === selectedInput;
224224
}
225225
this.activeId = selectedInput.id;
226-
safeCall(selectedInput.handler, selectedInput)
226+
safeCall(selectedInput.handler, selectedInput);
227227
this.el.forceUpdate();
228228
}
229229

core/src/utils/overlays.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,6 @@ const overlayAnimation = async (
203203
return hasCompleted;
204204
};
205205

206-
207206
export const eventMethod = <T>(element: HTMLElement, eventName: string): Promise<T> => {
208207
let resolve: (detail: T) => void;
209208
const promise = new Promise<T>(r => resolve = r);

0 commit comments

Comments
 (0)