Browse Source

fix: Fix typo in HOC display name. (#12542)

Mark Story 6 years ago
parent
commit
bf9563ca37
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/sentry/static/sentry/app/utils/withOrganization.jsx

+ 1 - 1
src/sentry/static/sentry/app/utils/withOrganization.jsx

@@ -8,7 +8,7 @@ import getDisplayName from 'app/utils/getDisplayName';
  */
 const withOrganization = WrappedComponent =>
   class extends React.Component {
-    static displayName = `withOrganizations(${getDisplayName(WrappedComponent)})`;
+    static displayName = `withOrganization(${getDisplayName(WrappedComponent)})`;
     static contextTypes = {
       organization: SentryTypes.Organization,
     };