File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ const Contributors: React.FC<{ image: string; name: string; gitUser: string }> =
13
13
setContributors ( function ( ) {
14
14
let retval = [ ] ;
15
15
for ( let i = 0 ; i < data . length ; i ++ ) {
16
- if ( blacklistedNames . includes ( data [ i ] . login ) ) continue ;
16
+ if ( blacklistedNames . includes ( data [ i ] . login ) || data [ i ] . login == undefined ) continue ;
17
17
console . log ( data [ i ] . login )
18
18
retval . push ( {
19
19
name : data [ i ] . login ,
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ const config: DocsThemeConfig = {
64
64
link : 'https://github.com/iceclusters/documentation' ,
65
65
} ,
66
66
chat : {
67
- link : 'https://discord.com/invite/icecluster ' ,
67
+ link : 'https://discord.gg/yGuYP7xD ' ,
68
68
} ,
69
69
docsRepositoryBase : 'https://github.com/iceclusters/Documentation/blob/main' ,
70
70
footer : {
You can’t perform that action at this time.
0 commit comments