Remove double stringify

This commit is contained in:
Andrew Shini 2017-05-13 11:24:48 +10:00 committed by GitHub
parent 7067d0417f
commit b55bab0516
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ export default function renderChart(props) {
} }
return val; return val;
}); });
window.postMessage(JSON.stringify(paramsString)); window.postMessage(paramsString);
}); });
` `
} }