fix: failing CI issues (#44339)

This commit is contained in:
Tom
2021-11-30 15:18:54 -06:00
committed by GitHub
parent e29dbe7e94
commit 69bb48b7e1
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ const mapStateToProps = (
isExpanded,
completedChallengeIds: completedChallenges.map(({ id }) => id)
})
)(state);
)(state as Record<string, unknown>);
};
const mapDispatchToProps = (dispatch: Dispatch) =>

View File

@ -53,7 +53,7 @@ const mapStateToProps = (state: unknown) => {
fetchState,
isSignedIn
})
)(state);
)(state as Record<string, unknown>);
};
const mapDispatchToProps = {