old version check
Summary: Remove old version number check. `AutoUpdateVersion` is used instead for macOS, we currently do not support auto-updates on other platforms. This also removes the leaked Intern Graph secret. Reviewed By: emilsjolander Differential Revision: D8488849 fbshipit-source-id: 0853e8f868137972f718847c49038304525e1e06
This commit is contained in:
committed by
Facebook Github Bot
parent
51ac6a1f8f
commit
7406af9c3a
@@ -28,7 +28,6 @@ import {
|
||||
togglePluginManagerVisible,
|
||||
} from '../reducers/application.js';
|
||||
import DevicesButton from './DevicesButton.js';
|
||||
import Version from './Version.js';
|
||||
import AutoUpdateVersion from './AutoUpdateVersion.js';
|
||||
import config from '../fb-stubs/config.js';
|
||||
|
||||
@@ -90,7 +89,7 @@ class SonarTitleBar extends Component<Props> {
|
||||
<Glyph color={colors.light30} name="flash-default" size={16} />
|
||||
</Icon>
|
||||
)}
|
||||
{process.platform === 'darwin' ? <AutoUpdateVersion /> : <Version />}
|
||||
{process.platform === 'darwin' ? <AutoUpdateVersion /> : null}
|
||||
{config.bugReportButtonVisible && (
|
||||
<Button
|
||||
compact={true}
|
||||
|
||||
Reference in New Issue
Block a user