mirror of
https://github.com/standardnotes/mobile.git
synced 2026-01-04 13:58:09 -05:00
fix: remove console.logs
This commit is contained in:
@@ -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();
|
||||
};
|
||||
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user