diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/generate-code-contributors.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/generate-code-contributors.ts b/scripts/generate-code-contributors.ts index 8cc3dc5b4..5635d9889 100755 --- a/scripts/generate-code-contributors.ts +++ b/scripts/generate-code-contributors.ts | |||
@@ -91,5 +91,5 @@ async function fetchZanata (zanataUsername: string, zanataPassword: string) { | |||
91 | get(year2019, headers) | 91 | get(year2019, headers) |
92 | ]) | 92 | ]) |
93 | 93 | ||
94 | return uniqBy((results2018.concat(results2019)), 'username') | 94 | return uniqBy(results2018.concat(results2019) as { username: string }[], 'username') |
95 | } | 95 | } |