Skip to content

Commit e797ca0

Browse files
committed
chore(lint): fix lint
1 parent 4025098 commit e797ca0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/vue/src/components/IonTabBar.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,9 @@ export const IonTabBar = defineComponent({
152152
const tabKeys = Object.keys(tabs);
153153
let activeTab = tabKeys.find((key) => {
154154
const href = tabs[key].originalHref;
155-
return currentRoute?.pathname && matchesTab(currentRoute.pathname, href);
155+
return (
156+
currentRoute?.pathname && matchesTab(currentRoute.pathname, href)
157+
);
156158
});
157159

158160
/**

0 commit comments

Comments
 (0)