Skip to content

Commit a1bacb8

Browse files
2 parents 0945c3f + 9fc42cc commit a1bacb8

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,3 +120,7 @@ This project is licensed under the MIT License.
120120
---
121121

122122
> Built with ❤️ by student developers for student developers.
123+
124+
125+
---
126+
Remove this.... here is testing

src/pages/Repositories/repositoriesListing.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,13 +217,13 @@ const RepositoriesListing = () => {
217217
viewMode === 'grid' ? (
218218
<motion.div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-5" variants={containerVariants}>
219219
{projects.map((project) => (
220-
<ProjectCardGrid key={project._id} project={project} onClick={(e) => handleRepoClick(project._id, e)} formatDate={formatDate}/>
220+
<ProjectCardGrid key={project?._id} project={project} onClick={(e) => handleRepoClick(project?._id, e)} formatDate={formatDate}/>
221221
))}
222222
</motion.div>
223223
) : (
224224
<motion.div className="space-y-4" variants={containerVariants}>
225225
{projects.map((project) => (
226-
<ProjectCardList key={project._id} project={project} onClick={(e) => handleRepoClick(project._id, e)} formatDate={formatDate}/>
226+
<ProjectCardList key={project?._id} project={project} onClick={(e) => handleRepoClick(project?._id, e)} formatDate={formatDate}/>
227227
))}
228228
</motion.div>
229229
)

0 commit comments

Comments
 (0)