Remove redundant code

This commit is contained in:
Aaron Yarborough 2020-04-13 13:52:46 +01:00
parent 250bae3a9a
commit 4ca94df129
2 changed files with 1 additions and 1 deletions

View file

@ -10,7 +10,6 @@ class Background {
const preferences: Preferences = await PreferencesRepository.get();
const hider = new TwitterHider(preferences);
hider.init();
}

View file

@ -1,5 +1,6 @@
import { PreferencesRepository } from './preferences-repository';
import { Preferences } from './interfaces/preferences';
import { TwitterHider } from './hider';
class Popup {
private static hideLikesCheckbox: HTMLInputElement;