Skip to content

Commit 616068e

Browse files
authored
chore: fix typo (#89)
1 parent 9e41f06 commit 616068e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/pages/SessionDetail.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,9 @@ const SessionDetail: React.FC<SessionDetailProps> = ({
123123
};
124124

125125
export default connect<OwnProps, StateProps, DispatchProps>({
126-
mapStateToProps: (state, OwnProps) => ({
127-
session: selectors.getSession(state, OwnProps),
128-
favoriteSessions: state.data.favorites,
126+
mapStateToProps: (state, ownProps) => ({
127+
session: selectors.getSession(state, ownProps),
128+
favoriteSessions: state.data.favorites
129129
}),
130130
mapDispatchToProps: {
131131
addFavorite,

0 commit comments

Comments
 (0)