Fix selector lib only grabbing from static nodes

This commit is contained in:
HenryNguyen5 2018-02-08 18:49:40 -05:00
parent 3952380363
commit be88aaabb0
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ export function getNodeConfig(state: AppState): StaticNodeConfig | CustomNodeCon
}
export function getNodeLib(state: AppState) {
const config = getStaticNodeConfig(state);
const config = getNodeConfig(state);
if (!config) {
throw Error('No node lib found when trying to select from state');
}