Skip to content

Commit 301ba12

Browse files
committed
chore: remove console logs
1 parent 53b2cf6 commit 301ba12

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

src/channel_manager.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,6 @@ export class ChannelManager {
266266
options,
267267
stateOptions,
268268
);
269-
console.log('CHANNELS QUERIED !');
270269
const newOffset = offset + (channels?.length ?? 0);
271270
const newOptions = { ...options, offset: newOffset };
272271
const { pagination } = this.state.getLatestValue();
@@ -355,10 +354,7 @@ export class ChannelManager {
355354
sort,
356355
});
357356

358-
console.log('CHANNELS FROM DB PRE: ', channelsFromDB);
359-
360357
if (channelsFromDB) {
361-
console.log('GOT CHANNELS FROM DB !', initialized, isLoading);
362358
const offlineChannels = this.client.hydrateActiveChannels(channelsFromDB, {
363359
offlineMode: true,
364360
skipInitialization: [], // passing empty array will clear out the existing messages from channel state, this removes the possibility of duplicate messages

test/unit/utils/mergeWith.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ describe('mergeWith', () => {
1717
};
1818

1919
const result = mergeWith(object, other);
20-
console.log('result', result);
2120
expect(result).toEqual({
2221
a: [
2322
{ b: 2, c: 3 },

0 commit comments

Comments
 (0)