Spaces:
Sleeping
Sleeping
Yann
commited on
Commit
·
c529a9f
1
Parent(s):
876f3b4
removed cloud stuff file menu
Browse files
src/main/components/Navigation/FileMenuButton.tsx
CHANGED
@@ -49,25 +49,6 @@ export const FileMenuButton: FC = observer(() => {
|
|
49 |
|
50 |
{user === null && !hasFSAccess && <LegacyFileMenu close={handleClose} />}
|
51 |
|
52 |
-
{user && <CloudFileMenu close={handleClose} />}
|
53 |
-
|
54 |
-
{user === null && (
|
55 |
-
<>
|
56 |
-
<MenuDivider />
|
57 |
-
<MenuItem
|
58 |
-
onClick={() => {
|
59 |
-
handleClose()
|
60 |
-
rootViewStore.openSignInDialog = true
|
61 |
-
}}
|
62 |
-
>
|
63 |
-
<CloudOutlined style={{ marginRight: "0.5em" }} />
|
64 |
-
<Localized default="Sign up to use Cloud Save">
|
65 |
-
please-sign-up
|
66 |
-
</Localized>
|
67 |
-
</MenuItem>
|
68 |
-
</>
|
69 |
-
)}
|
70 |
-
|
71 |
<MenuDivider />
|
72 |
|
73 |
<MenuItem onClick={onClickExport}>
|
|
|
49 |
|
50 |
{user === null && !hasFSAccess && <LegacyFileMenu close={handleClose} />}
|
51 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
<MenuDivider />
|
53 |
|
54 |
<MenuItem onClick={onClickExport}>
|
src/main/components/RootView/RootView.tsx
CHANGED
@@ -54,7 +54,6 @@ export const RootView: FC = () => (
|
|
54 |
<Container>
|
55 |
<Routes />
|
56 |
<TransportPanel />
|
57 |
-
<BuildInfo />
|
58 |
</Container>
|
59 |
</Column>
|
60 |
<HelpDialog />
|
|
|
54 |
<Container>
|
55 |
<Routes />
|
56 |
<TransportPanel />
|
|
|
57 |
</Container>
|
58 |
</Column>
|
59 |
<HelpDialog />
|