Skip to content

Commit

Permalink
feat(lib): remove keys
Browse files Browse the repository at this point in the history
  • Loading branch information
piotr-suwala committed Sep 19, 2023
1 parent af306e2 commit bd8a59a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions samples/react-native-group-chat/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,8 @@ function TabNavigator({ route }: StackScreenProps<RootStackParamList, "tabs">) {
useEffect(() => {
async function init() {
const chat = await Chat.init({
publishKey:
process.env.EXPO_PUBLIC_PUBNUB_PUB_KEY || "pub-c-0457cb83-0786-43df-bc70-723b16a6e816",
subscribeKey:
process.env.EXPO_PUBLIC_PUBNUB_SUB_KEY || "sub-c-e654122d-85b5-49a6-a3dd-8ebc93c882de",
publishKey: process.env.EXPO_PUBLIC_PUBNUB_PUB_KEY,
subscribeKey: process.env.EXPO_PUBLIC_PUBNUB_SUB_KEY,
userId: name || "test-user",
typingTimeout: 2000,
storeUserActivityTimestamps: true,
Expand Down

0 comments on commit bd8a59a

Please sign in to comment.