Skip to content

Commit c071822

Browse files
committed
fix: lint
Signed-off-by: Enjeck C <[email protected]>
1 parent a7cf79a commit c071822

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/App.vue

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,18 +134,16 @@ export default {
134134
fetchNotes()
135135
.then(data => {
136136
if (data === null) {
137-
// nothing changed
138137
return
139138
}
140139
if (data.notes !== null) {
141140
this.error = false
142-
console.log('settings', store.state.app.settings)
143141
if (store.state.app.settings?.loadRecentOnStartUp) {
144142
this.routeDefault(data.lastViewedNote)
145143
} else {
146144
this.routeWelcome()
147145
}
148-
146+
149147
} else if (this.loading.notes) {
150148
// only show error state if not loading in background
151149
this.error = data.errorMessage

0 commit comments

Comments
 (0)