Skip to content

Commit

Permalink
Remove unused props and imports (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaszantas authored and tarnas14 committed May 4, 2022
1 parent 1e1be64 commit 29f6224
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion applications/launchpad_v2/src/components/Tabs/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const Tabs = ({ tabs, selected, onSelect }: TabsProps) => {
{tab.content}
</Text>
</FontWeightCompensation>
<TabContent selected={selected === tab.id}>
<TabContent>
<Text
as={'span'}
type={selected === tab.id ? 'defaultHeavy' : 'defaultMedium'}
Expand Down
2 changes: 1 addition & 1 deletion applications/launchpad_v2/src/components/Tabs/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const FontWeightCompensation = styled.div`
}
`

export const TabContent = styled.div<{ selected?: boolean }>`
export const TabContent = styled.div`
position: absolute;
top: 0;
left: 0;
Expand Down

0 comments on commit 29f6224

Please sign in to comment.