Skip to content

Commit

Permalink
Fix for "Unable to resolve module nullthrows"
Browse files Browse the repository at this point in the history
Summary:
Recreated due to mistake with #7594.
Closes #7934

Differential Revision: D3391010

fbshipit-source-id: 7aad253d29f2272cfdaace1c1bb4f54a63faa353
  • Loading branch information
James authored and Facebook Github Bot 7 committed Jun 5, 2016
1 parent f49f28c commit 1facfb7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Libraries/Experimental/WindowedListView.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ const ViewabilityHelper = require('ViewabilityHelper');
const clamp = require('clamp');
const deepDiffer = require('deepDiffer');
const infoLog = require('infoLog');
const invariant = require('invariant');
const nullthrows = require('nullthrows');
const invariant = require('fbjs/lib/invariant');
const nullthrows = require('fbjs/lib/nullthrows');

import type ReactComponent from 'ReactComponent';

Expand Down

0 comments on commit 1facfb7

Please sign in to comment.