Przeglądaj źródła

Merge pull request #219 from Eyesonly88/master

Fixes compile error when getting packaged by metro
Gaëtan Renaudeau 5 lat temu
rodzic
commit
ec23260a9e
No account linked to committer's email address
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1
    1
      src/index.js

+ 1
- 1
src/index.js Wyświetl plik

@@ -177,7 +177,7 @@ export default class ViewShot extends Component<Props> {
177 177
   lastCapturedURI: ?string;
178 178
 
179 179
   resolveFirstLayout: (layout: Object) => void;
180
-  firstLayoutPromise = new Promise<void>(resolve => {
180
+  firstLayoutPromise = new Promise(resolve => {
181 181
     this.resolveFirstLayout = resolve;
182 182
   });
183 183