File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ export async function getCurrentTeams(): Promise<{
136136 ) ,
137137 ] ;
138138
139- const dataforSKAHLSite = allCurrentSKAHLSeasons . map ( ( season ) =>
139+ const dataForSKAHLSite = allCurrentSKAHLSeasons . map ( ( season ) =>
140140 safelyGetTeams (
141141 ( ) => getFiveVFiveCurrentTeams ( season ) ,
142142 < >
@@ -146,7 +146,7 @@ export async function getCurrentTeams(): Promise<{
146146 )
147147 ) ;
148148
149- const seasonData = await Promise . all ( dataForNonSKAHLSite . concat ( dataforSKAHLSite ) ) ;
149+ const seasonData = await Promise . all ( dataForNonSKAHLSite . concat ( dataForSKAHLSite ) ) ;
150150 return {
151151 teams : seasonData . map ( ( x ) => x . data ) . reduce ( ( a , b ) => a . concat ( b ) ) ,
152152 errors : seasonData . map ( ( x ) => x . error ) . filter ( ( a ) => a != null ) as ReactElement [ ] ,
You can’t perform that action at this time.
0 commit comments