diff options
author | Wyvest <wyvestbusiness@gmail.com> | 2024-01-04 07:12:03 -0500 |
---|---|---|
committer | Wyvest <wyvestbusiness@gmail.com> | 2024-01-04 07:12:03 -0500 |
commit | 98350bbd24582d95796dcfe5058bee43a1be3e50 (patch) | |
tree | e701c8c71b69681871e55259763b324dbbb83ffc /apps/website/src/pages/mods.astro | |
parent | bdee109e33e4e07b8087406edbd43647e5f85455 (diff) | |
download | Nexus-98350bbd24582d95796dcfe5058bee43a1be3e50.tar.gz Nexus-98350bbd24582d95796dcfe5058bee43a1be3e50.tar.bz2 Nexus-98350bbd24582d95796dcfe5058bee43a1be3e50.zip |
add easeify as excluded mod
Diffstat (limited to 'apps/website/src/pages/mods.astro')
-rw-r--r-- | apps/website/src/pages/mods.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/website/src/pages/mods.astro b/apps/website/src/pages/mods.astro index cf231d5..1bdb2ed 100644 --- a/apps/website/src/pages/mods.astro +++ b/apps/website/src/pages/mods.astro @@ -12,7 +12,7 @@ import { Code } from 'astro:components'; const res = await fetch('https://api.modrinth.com/v2/user/Wyvest/projects'); const data = await res.json(); const mods = data.filter((mod: any) => { - return mod.slug !== 'oneconfig'; + return mod.slug !== 'oneconfig' || mod.slug !== 'easeify'; }); --- |