Skip to content

Commit 03b62f2

Browse files
committed
Fixes client rendering bug in SeriesContainer
1 parent 70e1a8a commit 03b62f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

velog-frontend/src/containers/series/SeriesContainer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ type Props = {
1717

1818
class SeriesContainer extends Component<Props> {
1919
initialize = async () => {
20-
if (!this.props.shouldCancel) return;
20+
if (this.props.shouldCancel) return;
2121
SeriesActions.initialize();
2222
const { username, urlSlug } = this.props.match.params;
2323
if (!username || !urlSlug) return;

0 commit comments

Comments
 (0)