Skip to content

Commit

Permalink
feat(samples): revert
Browse files Browse the repository at this point in the history
  • Loading branch information
piotr-suwala committed May 21, 2024
1 parent 381d8bc commit 0f43af4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samples/react-native-group-chat/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ function MainRoutesNavigator({ route }: StackScreenProps<RootStackParamList, "ma
const { authKey } = await getAuthKey(name || "test-user")

const chat = await Chat.init({
publishKey: "YOUR_PUB_KEY",
subscribeKey: "YOUR_SUB_KEY",
publishKey: process.env.EXPO_PUBLIC_PUBNUB_PUB_KEY || "demo",
subscribeKey: process.env.EXPO_PUBLIC_PUBNUB_SUB_KEY || "demo",
userId: name || "test-user",
typingTimeout: 2000,
storeUserActivityTimestamps: true,
Expand Down

0 comments on commit 0f43af4

Please sign in to comment.