-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make internal anti-features web based
- Loading branch information
1 parent
9b3e123
commit 385a0f2
Showing
6 changed files
with
44 additions
and
149 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { SuFile } from "@Native/SuFile"; | ||
import { useFetch } from "./useFetch"; | ||
|
||
interface BlacklistedModule { | ||
id: string; | ||
source: string; | ||
hidden: boolean; | ||
notes: string; | ||
antifeatures: Track["antifeatures"]; | ||
} | ||
|
||
export const useBlacklist = () => { | ||
const [bl] = useFetch<BlacklistedModule[]>("https://gr.dergoogler.com/gmr/json/blacklist.json", { type: "json" }); | ||
return bl ? bl : []; | ||
}; |
This file was deleted.
Oops, something went wrong.