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 preferences: Preferences = await PreferencesRepository.get();
const hider = new TwitterHider(preferences); const hider = new TwitterHider(preferences);
hider.init(); hider.init();
} }

View file

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