Skip to content

Commit

Permalink
Remove commented-out classnames
Browse files Browse the repository at this point in the history
  • Loading branch information
rogermparent committed Oct 5, 2021
1 parent 5e79c19 commit edae234
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 10 deletions.
4 changes: 1 addition & 3 deletions src/components/Community/Meet/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,7 @@ const Issue: React.FC<{ color: string } & IGithubIssue> = ({
>
{title}
</Link>
<div
// className={styles.meta}
>
<div className={styles.meta}>
<Link
className={sharedStyles.commentsLink}
href={url}
Expand Down
4 changes: 1 addition & 3 deletions src/components/DownloadButton/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,7 @@ const getUserOS = (): OS => {
const DownloadButtonDropdownItems: React.FC<IDownloadButtonDropdownItemsProps> =
({ onClick, userOS }) => {
return (
<div
// className={styles.links}
>
<div className={styles.links}>
{dropdownItems.map((os, index) => {
if (os === null) {
return (
Expand Down
5 changes: 1 addition & 4 deletions src/components/LayoutFooter/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,10 +153,7 @@ const FooterLists: React.FC = () => (
<h2 className={styles.heading}>{header}</h2>
<ul className={styles.links}>
{links.map(({ text, target, href, icon }, i) => (
<li
// className={styles.linkItem}
key={i}
>
<li className={styles.linkItem} key={i}>
<Link target={target} href={href} className={styles.link}>
{icon}
{text}
Expand Down

0 comments on commit edae234

Please sign in to comment.