Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
XYShaoKang authored Aug 26, 2019
1 parent eabc154 commit e10fa07
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/components/src/tabs/tabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ import { Placeholder } from '../placeholder/placeholder';
import { FlexBar } from '../bar/bar';
import { TabButton } from '../bar/button';

const ignoreSsrWarning = '/* emotion-disable-server-rendering-unsafe-selector-warning-please-do-not-use-this-the-warning-exists-for-a-reason */'
const ignoreSsrWarning =
'/* emotion-disable-server-rendering-unsafe-selector-warning-please-do-not-use-this-the-warning-exists-for-a-reason */';

export interface WrapperProps {
bordered?: boolean;
Expand Down Expand Up @@ -75,7 +76,7 @@ const Content = styled.div<ContentProps>(
bottom: 0,
top: 40,
overflow: 'auto',
['& > *:first-child' + ignoreSsrWarning]: {
[`& > *:first-child${ignoreSsrWarning}`]: {
position: 'absolute',
left: 0,
right: 0,
Expand Down

0 comments on commit e10fa07

Please sign in to comment.