Skip to content

Commit 17a5def

Browse files
committed
fix: remove unnecessary comments
1 parent f3c1e08 commit 17a5def

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

package/src/components/ChannelPreview/ChannelPreviewMessenger.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,6 @@ const ChannelPreviewMessengerWithContext = <
170170
<Button
171171
title={membership.archived_at ? 'Unarchieve' : 'Archieve'}
172172
onPress={async () => {
173-
console.log('membership', membership.archived_at);
174173
if (membership.archived_at) {
175174
await channel.unarchive();
176175
} else {
@@ -181,7 +180,6 @@ const ChannelPreviewMessengerWithContext = <
181180
<Button
182181
title={membership.pinned_at ? 'Unpin' : 'Pin'}
183182
onPress={async () => {
184-
console.log('membership', membership.pinned_at);
185183
if (membership.pinned_at) {
186184
await channel.unpin();
187185
} else {

0 commit comments

Comments
 (0)