From 98350bbd24582d95796dcfe5058bee43a1be3e50 Mon Sep 17 00:00:00 2001 From: Wyvest Date: Thu, 4 Jan 2024 07:12:03 -0500 Subject: add easeify as excluded mod --- apps/website/src/pages/mods.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/website/src/pages/mods.astro') 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'; }); --- -- cgit