Skip to content

Commit f9c8242

Browse files
authored
Merge pull request #20 from wcandillon/wcandillon-patch-13
fix(component): Bug fix
2 parents 9a6d2ff + 932a15c commit f9c8242

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export class ProgressiveImage extends React.Component<ProgressiveImageProps, Pro
2828
this.fetch(preview)
2929
.then(previewDataURI => this.setState({ src: previewDataURI, blur: initialBlur }))
3030
.then(() => this.fetch(src))
31-
.then(srcDataURI => this.setState({ src: srcDataURI, blur: initialBlur }));
31+
.then(srcDataURI => this.setState({ src: srcDataURI, blur: 0 }));
3232
}
3333

3434
render() {

0 commit comments

Comments
 (0)