Skip to content

Commit

Permalink
DOP-4549 logging repo length
Browse files Browse the repository at this point in the history
  • Loading branch information
anabellabuckvar committed Apr 16, 2024
1 parent fdf8aaf commit 9f39e94
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/services/slack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,14 +210,14 @@ export class SlackConnector implements ISlackConnector {
type: 'plain_text',
text: 'group 1',
},
options: repos.slice(0, 50),
options: repos.slice(0, 30),
},
{
label: {
type: 'plain_text',
text: repos.length,
text: 'group 2',
},
options: repos.slice(50, -1),
options: repos.slice(50, repos.length),
},
],
},
Expand Down

0 comments on commit 9f39e94

Please sign in to comment.