Selaa lähdekoodia

Fix next props call

Jeff Lewis 4 vuotta sitten
vanhempi
commit
290ae63c1b
No account linked to committer's email address
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2
    2
      src/index.js

+ 2
- 2
src/index.js Näytä tiedosto

@@ -255,8 +255,8 @@ export default class ViewShot extends Component<Props> {
255 255
 
256 256
   static getDerivedStateFromProps(props, state) {
257 257
     if(props.captureMode !== undefined) {
258
-      if (nextProps.captureMode !== this.props.captureMode) {
259
-        this.syncCaptureLoop(nextProps.captureMode);
258
+      if (props.captureMode !== this.props.captureMode) {
259
+        this.syncCaptureLoop(props.captureMode);
260 260
       }
261 261
     }
262 262
     return null;