fix: failing CI issues (#44339)
This commit is contained in:
@ -32,7 +32,7 @@ const mapStateToProps = (
|
||||
isExpanded,
|
||||
completedChallengeIds: completedChallenges.map(({ id }) => id)
|
||||
})
|
||||
)(state);
|
||||
)(state as Record<string, unknown>);
|
||||
};
|
||||
|
||||
const mapDispatchToProps = (dispatch: Dispatch) =>
|
||||
|
@ -53,7 +53,7 @@ const mapStateToProps = (state: unknown) => {
|
||||
fetchState,
|
||||
isSignedIn
|
||||
})
|
||||
)(state);
|
||||
)(state as Record<string, unknown>);
|
||||
};
|
||||
|
||||
const mapDispatchToProps = {
|
||||
|
Reference in New Issue
Block a user