Skip to content

Commit f360e41

Browse files
authored
Missing semicolon to make CI happy
1 parent f13beb0 commit f360e41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ImageHeaderScrollView.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ class ImageHeaderScrollView extends Component<Props, State> {
199199
}
200200
this.container.measureInWindow((x, y) => {
201201
if (this.container) {
202-
this.setState(() => ({ pageY: y }))
202+
this.setState(() => ({ pageY: y }));
203203
}
204204
});
205205
};

0 commit comments

Comments
 (0)