Enforce react/jsx-boolean-value

Summary: yarn fix results.

Reviewed By: nikoant

Differential Revision: D28329714

fbshipit-source-id: 564aa24bcdb4bc6cdea67dfad10a077a9c817a2d
This commit is contained in:
Pascal Hartig
2021-05-11 10:12:56 -07:00
committed by Facebook GitHub Bot
parent 8ba27f5487
commit 69c7876be9
37 changed files with 71 additions and 86 deletions

View File

@@ -115,15 +115,14 @@ export function plugin(client: PluginClient<Events, Methods>) {
message: (
<Fragment>
<InlineFlexRow>
CloseableReference leaked for{' '}
<Text code={true}>{event.className}</Text>
CloseableReference leaked for <Text code>{event.className}</Text>
(identity hashcode: {event.identityHashCode}).
</InlineFlexRow>
<InlineFlexRow>
<Text bold={true}>Stacktrace:</Text>
<Text bold>Stacktrace:</Text>
</InlineFlexRow>
<InlineFlexRow>
<Text code={true}>{event.stacktrace || '<unavailable>'}</Text>
<Text code>{event.stacktrace || '<unavailable>'}</Text>
</InlineFlexRow>
</Fragment>
),
@@ -466,7 +465,7 @@ function Sidebar() {
if (currentSelectedImage == null) {
return (
<EmptySidebar grow={true}>
<EmptySidebar grow>
<Text align="center">
Select an image to see the events associated with it.
</Text>