Skip to content

Commit 047e2d1

Browse files
committed
types update
typo fix in StackContainer.types.tsx and import add in TabsContainerItem.types.ts
1 parent 48b37b7 commit 047e2d1

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

apps/src/shared/gamma/containers/stack/StackContainer.types.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export type StackRouteConfig = {
2525
export type StackRoute = Omit<StackRouteConfig, 'Component'> & {
2626
activityMode: StackScreenProps['activityMode'];
2727
routeKey: StackScreenProps['screenKey'];
28-
isMarkedForDismissal: Boolean; // whether this route is during or after dismissal process
28+
isMarkedForDismissal: boolean; // whether this route is during or after dismissal process
2929
};
3030

3131
/// StackContainer props
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import type { TabRoute, TabsNavigationMethods } from './TabsContainer.types';
2+
import React from 'react';
23

34
export type TabsContainerItemProps = {
45
route: TabRoute;
56
navMethods: TabsNavigationMethods;
67
isSelected: boolean;
78
pendingForUpdate: boolean;
89
Component: React.ComponentType;
9-
}
10-
10+
};

0 commit comments

Comments
 (0)