Skip to content

Commit b5165be

Browse files
committed
fix(lint): Running lint
1 parent 8eee226 commit b5165be

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

packages/react/src/components/IonApp.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@ import { IonOverlayManager } from './IonOverlayManager';
99
import type { IonicReactProps } from './IonicReactProps';
1010
import { IonAppInner } from './inner-proxies';
1111

12-
type Props = PropsWithChildren<LocalJSX.IonApp & IonicReactProps & {
13-
ref?: React.Ref<HTMLIonAppElement>;
14-
}>;
12+
type Props = PropsWithChildren<
13+
LocalJSX.IonApp &
14+
IonicReactProps & {
15+
ref?: React.Ref<HTMLIonAppElement>;
16+
}
17+
>;
1518

1619
export class IonApp extends React.Component<Props> {
1720
addOverlayCallback?: (id: string, overlay: ReactComponentOrElement, containerElement: HTMLDivElement) => void;

packages/react/src/components/navigation/IonBackButton.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,12 @@ import { NavContext } from '../../contexts/NavContext';
55
import type { IonicReactProps } from '../IonicReactProps';
66
import { IonBackButtonInner } from '../inner-proxies';
77

8-
type Props = PropsWithChildren<LocalJSX.IonBackButton & IonicReactProps & {
9-
ref?: React.Ref<HTMLIonBackButtonElement>;
10-
}>;
8+
type Props = PropsWithChildren<
9+
LocalJSX.IonBackButton &
10+
IonicReactProps & {
11+
ref?: React.Ref<HTMLIonBackButtonElement>;
12+
}
13+
>;
1114

1215
export class IonBackButton extends React.Component<Props> {
1316
context!: React.ContextType<typeof NavContext>;

0 commit comments

Comments
 (0)