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