File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments