Skip to content

Commit 168437b

Browse files
committed
fix: lint error
1 parent bf42a35 commit 168437b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/scratch-gui/src/lib/project-saver-hoc.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ const ProjectSaverHOC = function (WrappedComponent) {
6161
// Allow the GUI consumer to pass in a function to receive a trigger
6262
// for triggering thumbnail or whole project saves.
6363
// These functions are called with null on unmount to prevent stale references.
64-
this.props.onSetProjectThumbnailer((callback) => getProjectThumbnail(this.props.vm, callback));
64+
this.props.onSetProjectThumbnailer(callback => getProjectThumbnail(this.props.vm, callback));
6565
this.props.onSetProjectSaver(this.tryToAutoSave);
6666
}
6767
componentDidUpdate (prevProps) {

0 commit comments

Comments
 (0)