Remove test function
I assume this was a temp function.
This commit is contained in:
parent
7e2f66e207
commit
cbde7b904c
2 changed files with 3 additions and 16 deletions
|
@ -5,10 +5,6 @@ import Lbryio from './lbryio';
|
||||||
|
|
||||||
export { Lbryio };
|
export { Lbryio };
|
||||||
|
|
||||||
export function testTheThing() {
|
|
||||||
console.log('tested');
|
|
||||||
}
|
|
||||||
|
|
||||||
// constants
|
// constants
|
||||||
export { LBRYINC_ACTIONS, YOUTUBE_STATUSES, ERRORS };
|
export { LBRYINC_ACTIONS, YOUTUBE_STATUSES, ERRORS };
|
||||||
|
|
||||||
|
@ -51,10 +47,7 @@ export {
|
||||||
selectAllCostInfoByUri,
|
selectAllCostInfoByUri,
|
||||||
selectFetchingCostInfo,
|
selectFetchingCostInfo,
|
||||||
} from './redux/selectors/cost_info';
|
} from './redux/selectors/cost_info';
|
||||||
export {
|
export { selectBlackListedOutpoints, selectBlacklistedOutpointMap } from './redux/selectors/blacklist';
|
||||||
selectBlackListedOutpoints,
|
|
||||||
selectBlacklistedOutpointMap,
|
|
||||||
} from './redux/selectors/blacklist';
|
|
||||||
export { selectFilteredOutpoints, selectFilteredOutpointMap } from './redux/selectors/filtered';
|
export { selectFilteredOutpoints, selectFilteredOutpointMap } from './redux/selectors/filtered';
|
||||||
// export {
|
// export {
|
||||||
// selectFeaturedUris,
|
// selectFeaturedUris,
|
||||||
|
@ -62,11 +55,7 @@ export { selectFilteredOutpoints, selectFilteredOutpointMap } from './redux/sele
|
||||||
// selectTrendingUris,
|
// selectTrendingUris,
|
||||||
// selectFetchingTrendingUris,
|
// selectFetchingTrendingUris,
|
||||||
// } from './redux/selectors/homepage';
|
// } from './redux/selectors/homepage';
|
||||||
export {
|
export { selectViewCount, makeSelectViewCountForUri, makeSelectSubCountForUri } from './redux/selectors/stats';
|
||||||
selectViewCount,
|
|
||||||
makeSelectViewCountForUri,
|
|
||||||
makeSelectSubCountForUri,
|
|
||||||
} from './redux/selectors/stats';
|
|
||||||
export {
|
export {
|
||||||
selectHasSyncedWallet,
|
selectHasSyncedWallet,
|
||||||
selectSyncData,
|
selectSyncData,
|
||||||
|
|
|
@ -19,7 +19,7 @@ import Lbry, { apiCall } from 'lbry';
|
||||||
import { isURIValid } from 'util/lbryURI';
|
import { isURIValid } from 'util/lbryURI';
|
||||||
import { setSearchApi } from 'redux/actions/search';
|
import { setSearchApi } from 'redux/actions/search';
|
||||||
import { doSetLanguage, doFetchLanguage, doUpdateIsNightAsync } from 'redux/actions/settings';
|
import { doSetLanguage, doFetchLanguage, doUpdateIsNightAsync } from 'redux/actions/settings';
|
||||||
import { Lbryio, doBlackListedOutpointsSubscribe, doFilteredOutpointsSubscribe, testTheThing } from 'lbryinc';
|
import { Lbryio, doBlackListedOutpointsSubscribe, doFilteredOutpointsSubscribe } from 'lbryinc';
|
||||||
import rewards from 'rewards';
|
import rewards from 'rewards';
|
||||||
import { store, persistor, history } from 'store';
|
import { store, persistor, history } from 'store';
|
||||||
import app from './app';
|
import app from './app';
|
||||||
|
@ -65,8 +65,6 @@ if (process.env.NODE_ENV === 'production') {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
testTheThing();
|
|
||||||
|
|
||||||
if (process.env.SDK_API_URL) {
|
if (process.env.SDK_API_URL) {
|
||||||
console.warn('SDK_API_URL env var is deprecated. Use SDK_API_HOST instead'); // @eslint-disable-line
|
console.warn('SDK_API_URL env var is deprecated. Use SDK_API_HOST instead'); // @eslint-disable-line
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue