fix: remove console.logs

This commit is contained in:
Radek Czemerys
2020-08-27 11:25:02 +02:00
parent 7d3732db72
commit 24b14834c0
2 changed files with 2 additions and 3 deletions

View File

@@ -51,7 +51,7 @@ export const openComposeNewNoteScreen = async () => {
await waitFor(element(by.id('newNoteButton')))
.toBeVisible()
.withTimeout(2000);
console.log(element(by.id('newNoteButton')));
await element(by.id('newNoteButton')).tap();
};

View File

@@ -198,7 +198,7 @@ export const Notes: React.FC<Props> = props => {
const newHideTags = application!
.getPrefsService()
.getValue(MobilePrefKey.NotesHideTags, false);
console.log(newHideDate);
if (sortBy !== newSortBy) {
setSortBy(newSortBy);
displayOptionsChanged = true;
@@ -260,7 +260,6 @@ export const Notes: React.FC<Props> = props => {
reloadNotes();
}
if (state === AppStateType.PreferencesChanged) {
console.log('pref changed');
reloadPreferences();
}
});