Skip to content

Commit d7030c2

Browse files
fix: omit name from CustomChannelData for ChannelFilters (#1494)
## Description of the changes, What, Why and How?
1 parent 39091c7 commit d7030c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1654,7 +1654,7 @@ export type ReactionFilters = QueryFilters<
16541654
>;
16551655

16561656
export type ChannelFilters = QueryFilters<
1657-
ContainsOperator<CustomChannelData> & {
1657+
ContainsOperator<Omit<CustomChannelData, 'name'>> & {
16581658
archived?: boolean;
16591659
'member.user.name'?:
16601660
| RequireOnlyOne<{

0 commit comments

Comments
 (0)