Skip to content

Commit faeec44

Browse files
Fix formatting
1 parent 834f8d4 commit faeec44

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

src/components/InlineInAppMessageView.tsx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,10 @@ import type { InAppMessage } from '../types';
2020
* Props for the InlineInAppMessageView component.
2121
*/
2222
/** @public */
23-
export interface InlineInAppMessageViewProps
24-
extends Omit<
25-
NativeProps,
26-
'onSizeChange' | 'onStateChange' | 'onActionClick'
27-
> {
23+
export interface InlineInAppMessageViewProps extends Omit<
24+
NativeProps,
25+
'onSizeChange' | 'onStateChange' | 'onActionClick'
26+
> {
2827
/** Custom loading component to display while message is loading */
2928
loadingComponent?: React.ReactNode;
3029
/** Props for the default ActivityIndicator with optional minimum height */

src/customerio-inapp.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@ import { callNativeModule, ensureNativeModule } from './utils/native-bridge';
1212
*
1313
* @internal
1414
*/
15-
interface NativeInAppSpec
16-
extends Omit<CodegenSpec, keyof TurboModule | 'onInAppEventReceived'> {}
15+
interface NativeInAppSpec extends Omit<
16+
CodegenSpec,
17+
keyof TurboModule | 'onInAppEventReceived'
18+
> {}
1719

1820
// Reference to the native CustomerIO Data Pipelines module for SDK operations
1921
const nativeModule = ensureNativeModule(NativeCustomerIOMessagingInApp);

0 commit comments

Comments
 (0)