fix: Enable additional tabs

This commit is contained in:
2018-09-04 15:32:27 +02:00
parent c8f41d45ea
commit 87bde4c742
5 changed files with 45 additions and 20 deletions

View File

@@ -25,7 +25,7 @@ const DevTool = ({
showNetwork = true,
showStorage = true,
showConsole = true,
additionTools = [],
additionalTools = [],
}) => {
const views = [];
@@ -52,7 +52,7 @@ const DevTool = ({
});
}
additionTools.forEach(tool => {
additionalTools.forEach(tool => {
views.push(tool);
});