@@ -142,7 +142,7 @@ describe('Update Avatar props', () => {
142
142
import Avatar from '@atlaskit/avatar';
143
143
144
144
const App = () => {
145
- return <Avatar />;
145
+ return ( <Avatar />) ;
146
146
}
147
147
` ,
148
148
'should remove all deleted props' ,
@@ -170,7 +170,7 @@ describe('Update Avatar props', () => {
170
170
import Foo from '@atlaskit/avatar';
171
171
172
172
const App = () => {
173
- return <Foo />;
173
+ return ( <Foo />) ;
174
174
}
175
175
` ,
176
176
'should remove all deleted props with aliased import name' ,
@@ -194,7 +194,7 @@ describe('Update Avatar props', () => {
194
194
import Avatar from '@atlaskit/avatar';
195
195
196
196
const App = () => {
197
- return <Avatar />;
197
+ return ( <Avatar />) ;
198
198
}
199
199
` ,
200
200
'should remove enableTooltip when false' ,
@@ -256,7 +256,7 @@ describe('Update AvatarItem props', () => {
256
256
import Avatar, { AvatarItem } from '@atlaskit/avatar';
257
257
258
258
const App = () => {
259
- return <AvatarItem />;
259
+ return ( <AvatarItem />) ;
260
260
}
261
261
` ,
262
262
'should remove all deleted props' ,
@@ -284,7 +284,7 @@ describe('Update AvatarItem props', () => {
284
284
import { AvatarItem as Foo } from '@atlaskit/avatar';
285
285
286
286
const App = () => {
287
- return <Foo />;
287
+ return ( <Foo />) ;
288
288
}
289
289
` ,
290
290
'should remove all deleted props with aliased import' ,
@@ -308,7 +308,7 @@ describe('Update AvatarItem props', () => {
308
308
import { AvatarItem } from '@atlaskit/avatar';
309
309
310
310
const App = () => {
311
- return <AvatarItem />;
311
+ return ( <AvatarItem />) ;
312
312
}
313
313
` ,
314
314
'should remove enableTextTruncate when defaulted to true' ,
@@ -333,9 +333,9 @@ describe('Update AvatarItem props', () => {
333
333
334
334
const App = () => {
335
335
return (
336
- <AvatarItem
336
+ ( <AvatarItem
337
337
isTruncationDisabled
338
- />
338
+ />)
339
339
);
340
340
}
341
341
` ,
@@ -365,9 +365,9 @@ describe('Update AvatarItem props', () => {
365
365
366
366
const App = () => {
367
367
return (
368
- <AvatarItem
368
+ ( <AvatarItem
369
369
isTruncationDisabled={!value}
370
- />
370
+ />)
371
371
);
372
372
}
373
373
` ,
@@ -399,9 +399,9 @@ describe('Update AvatarItem props', () => {
399
399
400
400
const App = () => {
401
401
return (
402
- <AvatarItem
402
+ ( <AvatarItem
403
403
isTruncationDisabled={!(foo && bar)}
404
- />
404
+ />)
405
405
);
406
406
}
407
407
` ,
@@ -426,7 +426,7 @@ describe('Update AvatarItem props', () => {
426
426
import Avatar, { AvatarItem } from '@atlaskit/avatar';
427
427
428
428
const App = () => {
429
- return <AvatarItem />;
429
+ return ( <AvatarItem />) ;
430
430
}
431
431
` ,
432
432
'should remove isTruncationDisabled when true' ,
0 commit comments