Skip to content

Commit

Permalink
fixed prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
elraphty committed Feb 15, 2025
1 parent cc99824 commit 0012aa0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/people/main/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ const MTabs = styled.div`
interface TagProps {
selected: boolean;
}
const Tab = styled(Link) <TagProps>`
const Tab = styled(Link)<TagProps>`
display: flex;
padding: 0 8px;
color: ${(p: any) => (p.selected ? '#fff' : '#6B7A8D')};
Expand All @@ -124,7 +124,7 @@ const Tab = styled(Link) <TagProps>`
}
`;

const MTab = styled(Link) <TagProps>`
const MTab = styled(Link)<TagProps>`
display: flex;
margin: 25px 5px 0;
color: ${(p: any) => (p.selected ? '#fff' : '#6B7A8D')};
Expand Down

0 comments on commit 0012aa0

Please sign in to comment.