File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -259,7 +259,7 @@ const RepositoryDetails = () => {
259259 < div className = "bg-[#1A1A1A] border border-[#23252B] rounded-xl p-5" >
260260 < img src = { repoImage } alt = { `${ repository . name } preview` } className = "w-full h-40 object-cover rounded-lg mb-4 bg-[#23252B]" onError = { ( e ) => { e . target . onerror = null ; e . target . src = DEFAULT_REPO_IMAGE ; } } />
261261 < div className = "space-y-4" >
262- < SidebarInfoItem icon = { < Users size = { 14 } /> } label = "Maintainer " value = { repository . assignedMentor || "Not Assigned" } />
262+ < SidebarInfoItem icon = { < Users size = { 14 } /> } label = "Mentor " value = { repository . assignedMentor || "Not Assigned" } />
263263 < SidebarInfoItem icon = { < FileText size = { 14 } /> } label = "License" value = { repository . license || "N/A" } />
264264 < SidebarInfoItem icon = { < Calendar size = { 14 } /> } label = "Last Updated" value = { formatDate ( repository . updatedAt ) } />
265265 </ div >
Original file line number Diff line number Diff line change @@ -151,10 +151,10 @@ const RepositoriesListing = () => {
151151 < button onClick = { ( ) => setViewMode ( "grid" ) } className = { `p-2 rounded-md transition-all ${ viewMode === 'grid' ? 'bg-[#3A3A3A] text-white' : 'text-[#A1A1AA] hover:bg-[#2A2A2A]' } ` } > < LayoutGrid size = { 20 } /> </ button >
152152 < button onClick = { ( ) => setViewMode ( "list" ) } className = { `p-2 rounded-md transition-all ${ viewMode === 'list' ? 'bg-[#3A3A3A] text-white' : 'text-[#A1A1AA] hover:bg-[#2A2A2A]' } ` } > < List size = { 20 } /> </ button >
153153 </ div >
154- < button onClick = { ( ) => setShowFilters ( ! showFilters ) } className = "flex w-full md:w-auto items-center justify-center gap-2 bg-transparent border border-[#3A3A3A] text-white px-4 py-3 rounded-lg hover:bg-[#2A2A2A] transition-colors relative" >
154+ { /* <button onClick={() => setShowFilters(!showFilters)} className="flex w-full md:w-auto items-center justify-center gap-2 bg-transparent border border-[#3A3A3A] text-white px-4 py-3 rounded-lg hover:bg-[#2A2A2A] transition-colors relative">
155155 <Filter size={20} /> Filters
156156 {activeFiltersCount > 0 && <span className="absolute -top-2 -right-2 bg-[#C6FF3D] text-black text-xs rounded-full h-5 w-5 flex items-center justify-center font-medium">{activeFiltersCount}</span> }
157- </ button >
157+ </button> */ }
158158 </ div >
159159 </ div >
160160
You can’t perform that action at this time.
0 commit comments