Skip to content

Commit

Permalink
Update TechStacks.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
KORLA2 committed Oct 6, 2022
1 parent c3c47b3 commit 3f19428
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/common/techstack/TechStacks.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ const TechStack = () => {
</h2>
<div className="list-brand-tech-stack">
{/* <div className='md:w-[800px] 2xl:w-[1000px] w-full flex flex-wrap m-8'> */}
{TechStackInfo.map((Item, idx) => {
{
TechStackInfo.length&&(TechStackInfo.map((Item, idx) => {
if (Item.type === "icon") {
return (
<a
Expand Down Expand Up @@ -39,7 +40,8 @@ const TechStack = () => {
} else {
return null;
}
})}
})
)}
</div>
</div>
);
Expand Down

0 comments on commit 3f19428

Please sign in to comment.