Browse Source

fix(lint): Broken contextData lint (#26871)

Tony Xiao 3 years ago
parent
commit
73ca1a17ea
1 changed files with 2 additions and 7 deletions
  1. 2 7
      static/app/components/contextData/index.tsx

+ 2 - 7
static/app/components/contextData/index.tsx

@@ -36,13 +36,8 @@ class ContextData extends React.Component<Props, State> {
   };
 
   renderValue(value: Value) {
-    const {
-      preserveQuotes,
-      meta,
-      withAnnotatedText,
-      jsonConsts,
-      maxDefaultDepth,
-    } = this.props;
+    const {preserveQuotes, meta, withAnnotatedText, jsonConsts, maxDefaultDepth} =
+      this.props;
     const maxDepth = maxDefaultDepth ?? 2;
 
     function getValueWithAnnotatedText(v: Value, meta?: Meta) {