From 1d3559c75900d4151663fa517b0a50d71dec4e1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20B=C3=BCchele?= Date: Wed, 10 Apr 2019 10:30:00 -0700 Subject: [PATCH] Remove beta bar from layout plugin Summary: I though I already did this, when releasing it. Apparently not. Reviewed By: jknoxville Differential Revision: D14854810 fbshipit-source-id: 4da61866925e06a415bfaed0f48e5434e769ec39 --- src/plugins/layout/index.js | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/src/plugins/layout/index.js b/src/plugins/layout/index.js index 1bdd24765..ba26f3401 100644 --- a/src/plugins/layout/index.js +++ b/src/plugins/layout/index.js @@ -19,10 +19,7 @@ import { FlipperPlugin, Toolbar, Sidebar, - Link, - Glyph, DetailSidebar, - styled, } from 'flipper'; import Inspector from './Inspector'; import ToolbarIcon from './ToolbarIcon'; @@ -49,14 +46,6 @@ export type PersistedState = {| AXelements: ElementMap, |}; -const BetaBar = styled(Toolbar)({ - display: 'block', - overflow: 'hidden', - lineHeight: '15px', - whiteSpace: 'nowrap', - textOverflow: 'ellipsis', -}); - export default class Layout extends FlipperPlugin { static exportPersistedState = ( callClient: (string, ?Object) => Promise, @@ -245,17 +234,6 @@ export default class Layout extends FlipperPlugin { )} - {/* TODO: Remove this when rolling out publicly */} - - -   - Version 2.0:  Provide feedback about this plugin - in our  - - feedback group - - . - ); }