Przeglądaj źródła

remove unused var

AykutSarac 3 lat temu
rodzic
commit
b3afea6f1c
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      src/containers/Editor/Tools.tsx

+ 1 - 1
src/containers/Editor/Tools.tsx

@@ -41,7 +41,7 @@ const StyledToolElement = styled.button`
 `;
 
 export const Tools: React.FC = () => {
-  const { json, settings, dispatch } = useConfig();
+  const { settings, dispatch } = useConfig();
 
   const zoomIn = () => dispatch({ type: ConfigActionType.ZOOM_IN });