Skip to content

Commit

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

const chat = await Chat.init({
publishKey: "pub-c-009185a0-fd47-4cfa-af73-b3ad88c52b8a", // process.env.EXPO_PUBLIC_PUBNUB_PUB_KEY || "demo",
subscribeKey: "sub-c-10ef96d2-b4a1-46d6-afa7-2c5f4455c034", // process.env.EXPO_PUBLIC_PUBNUB_SUB_KEY || "demo",
publishKey: process.env.EXPO_PUBLIC_PUBNUB_PUB_KEY || "demo",
subscribeKey: process.env.EXPO_PUBLIC_PUBNUB_SUB_KEY || "demo",
userId: name || "test-user",
origin: "ingress-http.pdx1.aws.int.ps.pn",
typingTimeout: 2000,
storeUserActivityTimestamps: true,
storeUserActivityInterval: 60000,
Expand Down

0 comments on commit c93d21c

Please sign in to comment.