Skip to content

Commit dafd00d

Browse files
committed
weird removal but okay
1 parent 9fbdaa7 commit dafd00d

File tree

2 files changed

+1
-19
lines changed

2 files changed

+1
-19
lines changed

packages/app/src/app/pages/common/Modals/PreferencesModal/SideNavigation/elements.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,3 @@ export const Selector = styled.div`
6060
6161
transform: translateY(${props => props.offset + 1}px);
6262
`;
63-
64-
export const SocialContainer = styled.div`
65-
position: absolute;
66-
bottom: 2em;
67-
margin-top: 2em;
68-
margin-left: 2em;
69-
`;

packages/app/src/app/pages/common/Modals/PreferencesModal/SideNavigation/index.js

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,6 @@
11
import React from 'react';
22
import Relative from '@codesandbox/common/lib/components/Relative';
3-
import { SocialInfo } from 'app/components/SocialInfo';
4-
import {
5-
Container,
6-
SocialContainer,
7-
Title,
8-
ITEM_HEIGHT,
9-
Item,
10-
Selector,
11-
} from './elements';
3+
import { Container, Title, ITEM_HEIGHT, Item, Selector } from './elements';
124

135
export const SideNavigation = ({ menuItems, itemId, setItem }) => {
146
const itemIndex = menuItems.findIndex(item => item.id === itemId);
@@ -32,9 +24,6 @@ export const SideNavigation = ({ menuItems, itemId, setItem }) => {
3224
))}
3325
<Selector offset={itemIndex * ITEM_HEIGHT} />
3426
</Relative>
35-
<SocialContainer>
36-
<SocialInfo />
37-
</SocialContainer>
3827
</Container>
3928
);
4029
};

0 commit comments

Comments
 (0)