Skip to content

Commit 1d2f5cf

Browse files
committed
chore: small fixes
1 parent dea2f32 commit 1d2f5cf

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

docs-validation/4_key-functions/Architecture/Context.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ import { GroupChannelContexts } from '@sendbird/uikit-react-native';
99
const CustomTypingUsersComponent = () => {
1010
const { typingUsers } = useContext(GroupChannelContexts.TypingIndicator);
1111
if (typingUsers.length === 0) return null;
12-
return <Text>{`several people are typings (${typingUsers.length})`}</Text>;
12+
return <Text>{`several people are typing (${typingUsers.length})`}</Text>;
1313
};
1414
/** ------------------ **/

packages/uikit-react-native/src/index.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,8 @@ export type { UserListProps, UserListModule, UserListContextsType } from './doma
9696
export * from './domain/groupChannelUserList/types';
9797

9898
/** UIKit **/
99-
export {
100-
default as SendbirdUIKitContainer,
101-
SendbirdUIKit,
102-
SendbirdUIKitContainerProps,
103-
} from './containers/SendbirdUIKitContainer';
99+
export { default as SendbirdUIKitContainer, SendbirdUIKit } from './containers/SendbirdUIKitContainer';
100+
export type { SendbirdUIKitContainerProps } from './containers/SendbirdUIKitContainer';
104101
export { default as SBUError } from './libs/SBUError';
105102

106103
export * from './types';

0 commit comments

Comments
 (0)