Browse Source

fix one single linting problem

pull/97/head
Trent Larson 9 months ago
parent
commit
aaa1f31945
  1. 5
      src/App.vue

5
src/App.vue

@ -329,7 +329,10 @@ export default class App extends Vue {
}
} catch (error) {
if (window.location.host.startsWith("localhost")) {
console.log("Ignoring this error getting VAPID for local development:", error);
console.log(
"Ignoring this error getting VAPID for local development:",
error,
);
} else {
console.error("Got an error initializing notifications:", error);
this.$notify(

Loading…
Cancel
Save