update to 0.3.47 - fix linting

This commit is contained in:
2025-01-06 09:01:06 -07:00
parent 1fa11b2401
commit e218bde9cc
2 changed files with 3 additions and 3 deletions

View File

@@ -98,7 +98,7 @@ import { useClipboard } from "@vueuse/core";
import QuickNav from "@/components/QuickNav.vue";
import UserNameDialog from "@/components/UserNameDialog.vue";
import { APP_SERVER, NotificationIface } from "@/constants/app";
import { NotificationIface } from "@/constants/app";
import { db, retrieveSettingsForActiveAccount } from "@/db/index";
import { Contact } from "@/db/tables/contacts";
import { MASTER_SETTINGS_KEY } from "@/db/tables/settings";
@@ -196,7 +196,7 @@ export default class ContactQRScanShow extends Vue {
if (Array.isArray(payload.contacts)) {
// reroute to the ContactsImport
(this.$router as Router).push({
path: '/contacts-import/' + url.substring(url.lastIndexOf('/') + 1),
path: "/contacts-import/" + url.substring(url.lastIndexOf("/") + 1),
});
return;
}

View File

@@ -883,7 +883,7 @@ export default class ContactsView extends Vue {
if (Array.isArray(payload.contacts)) {
// reroute to the ContactsImport
(this.$router as Router).push({
path: '/contacts-import/' + url.substring(url.lastIndexOf('/') + 1),
path: "/contacts-import/" + url.substring(url.lastIndexOf("/") + 1),
});
return;
}