Revert "#99 Added empty script for profile"

This reverts commit 9c3fbd31a1.
This commit is contained in:
Serraniel 2020-10-27 19:51:30 +01:00
parent 9c3fbd31a1
commit ce7ff5d949
Signed by: Serraniel
GPG key ID: 3690B4E7364525D3
2 changed files with 0 additions and 10 deletions

View file

@ -1,8 +0,0 @@
import * as core from '../utils/aniwatchCore';
import * as helper from '../utils/helpers';
export function init() {
core.registerScript(node => {
}, "^/profile/[0-9]*$");
}

View file

@ -5,7 +5,6 @@ import { initHelpers } from './utils/helpers';
// enhancements
import { init as animeRequests } from './enhancements/animeRequests';
import { init as languageDisplay } from './enhancements/languageDisplay';
import { init as profile } from './enhancements/profile';
import { init as quickSearch } from './enhancements/quickSearch';
// core
@ -17,5 +16,4 @@ initHelpers();
// enhancements
animeRequests();
languageDisplay();
profile();
quickSearch();