Skip to content

Commit 1b1988c

Browse files
committed
fix(overlays): lint
1 parent 4f4e9d9 commit 1b1988c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/vue/src/utils/overlays.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,9 @@ export const defineOverlayContainer = <Props extends object>(
148148

149149
onMounted(() => {
150150
// Convert name from kebab-case to camelCase
151-
const componentName = name.replace(/-([a-z])/g, (_, letter) => letter.toUpperCase());
151+
const componentName = name.replace(/-([a-z])/g, (_, letter) =>
152+
letter.toUpperCase()
153+
);
152154
elementRef.value.addEventListener("ionMount", (ev: Event) => {
153155
emit("ionMount", ev);
154156
emit(componentName + "IonMount", ev);

0 commit comments

Comments
 (0)