Feat(plugin + fix ) GithubRepos & Pluginsettings (#185)

* Updated Pluginsettings.tsx (https://github.com/Vendicated/Vencord/pull/3293)
Added GithubRepos (https://github.com/Vendicated/Vencord/pull/3292)
Also added Equicord Contrib to needed people

* Fixed lint error

* Hopefully fixed it?

* Resolved conflicts

---------

Co-authored-by: Crxa <c@crxaw.tech>
Co-authored-by: thororen <78185467+thororen1234@users.noreply.github.com>
This commit is contained in:
Crxaw 2025-03-17 05:40:53 +00:00 committed by GitHub
parent bc29549586
commit 14db952e94
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 835 additions and 1 deletions

View file

@ -276,7 +276,7 @@ export default function PluginSettings() {
if (!search.length) return true;
return (
plugin.name.toLowerCase().includes(search) ||
plugin.name.toLowerCase().includes(search.replace(/\s+/g, "")) ||
plugin.description.toLowerCase().includes(search) ||
plugin.tags?.some(t => t.toLowerCase().includes(search))
);