Skip to content

Commit

Permalink
fix: total emails on domain
Browse files Browse the repository at this point in the history
  • Loading branch information
benemohamed committed Aug 8, 2023
1 parent 6192253 commit ad3884e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/slack/response.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ func SearchResponse(data models.Search) Model {
Type: "section",
Text: &Text{
Type: "mrkdwn",
Text: fmt.Sprintf("%d results for your search %s\n", len(emails), *data.Data.Organization.WebsiteURL),
Text: fmt.Sprintf("%d results for your search %s\n", data.Meta.Total, *data.Data.Organization.WebsiteURL),
},
})

Expand Down

0 comments on commit ad3884e

Please sign in to comment.