Browse Source

fix: linting

pull/193/head
Trent Larson 2 weeks ago
parent
commit
db4496c57b
  1. 6
      src/views/DiscoverView.vue
  2. 3
      src/views/NewActivityView.vue
  3. 4
      src/views/ProjectViewView.vue

6
src/views/DiscoverView.vue

@ -371,11 +371,7 @@ import {
import { Contact } from "../db/tables/contacts";
import { BoundingBox } from "../db/tables/settings";
import { PlanData } from "../interfaces";
import {
didInfo,
errorStringForLog,
getHeaders,
} from "../libs/endorserServer";
import { didInfo, errorStringForLog, getHeaders } from "../libs/endorserServer";
import { OnboardPage, retrieveAccountDids } from "../libs/util";
import { logger } from "../utils/logger";
import { UserProfile } from "@/libs/partnerServer";

3
src/views/NewActivityView.vue

@ -536,8 +536,7 @@ export default class NewActivityView extends Vue {
} else {
// it's the last entry (or not found), so just keep it the same
await this.$saveUserSettings(this.activeDid, {
lastAckedStarredPlanChangesJwtId:
this.lastAckedStarredPlanChangesJwtId,
lastAckedStarredPlanChangesJwtId: this.lastAckedStarredPlanChangesJwtId,
});
}
this.notify.info(

4
src/views/ProjectViewView.vue

@ -1544,9 +1544,7 @@ export default class ProjectViewView extends Vue {
this.isStarred = false;
} else {
// eslint-disable-next-line no-console
logger.error(
"Got a bad result from SQL update to unstar a project.",
);
logger.error("Got a bad result from SQL update to unstar a project.");
}
}
} catch (error) {

Loading…
Cancel
Save