Fix some deepscan issues

This commit is contained in:
Tom Coleman 2021-05-14 14:32:57 +10:00
parent 847b196bd0
commit 31694e05ba
3 changed files with 3 additions and 5 deletions

View File

@ -1,4 +1,4 @@
import React, { FC, useCallback, useState } from 'react';
import React, { FC, useCallback } from 'react';
import { opacify, transparentize } from 'polished';
import { styled } from '@storybook/theming';

View File

@ -271,13 +271,13 @@ export const ObjectControl: React.FC<ObjectProps> = ({ name, value, onChange })
return (
<Wrapper>
{hasData && ['Object', 'Array'].includes(getObjectType(data)) && (
{['Object', 'Array'].includes(getObjectType(data)) && (
<RawButton onClick={() => setShowRaw((v) => !v)}>
<Icons icon={showRaw ? 'eyeclose' : 'eye'} />
<span>RAW</span>
</RawButton>
)}
{hasData && !showRaw ? (
{!showRaw ? (
<JsonTree
data={data}
rootName={name}

View File

@ -1,5 +1,3 @@
import { isNumber } from 'lodash';
import { array } from 'prop-types';
import React, { useState } from 'react';
import { OptionsControl } from './Options';