From 1d277bc81fa3f8601d22d56efaf4aaf53f934623 Mon Sep 17 00:00:00 2001 From: btzr-io Date: Sat, 18 Aug 2018 19:15:04 -0600 Subject: [PATCH] fix typo --- src/renderer/component/viewers/threeViewer/index.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/renderer/component/viewers/threeViewer/index.jsx b/src/renderer/component/viewers/threeViewer/index.jsx index 020a3b1b7..b2de95b81 100644 --- a/src/renderer/component/viewers/threeViewer/index.jsx +++ b/src/renderer/component/viewers/threeViewer/index.jsx @@ -386,13 +386,13 @@ class ThreeViewer extends React.PureComponent { const showLoading = isLoading && !error; // Adaptive theme for gui controls - const containterClass = classNames('gui-container', { light: theme === 'light' }); + const containerClass = classNames('gui-container', { light: theme === 'light' }); return ( {error && } {showLoading && } -
+