(chore): cleaning up formatting and relative references

This commit is contained in:
Matthew Raymer
2025-02-06 14:08:54 +00:00
parent 43983bd993
commit d9085ced6d
10 changed files with 98 additions and 93 deletions

View File

@@ -1391,14 +1391,14 @@ export default class ContactsView extends Vue {
const headers = await getHeaders(this.activeDid);
const memberResponse = await this.axios.get(
this.apiServer + "/api/partner/groupOnboardMember",
{ headers }
{ headers },
);
if (memberResponse.data.data) {
// They're in a meeting, check if they're the host
const hostResponse = await this.axios.get(
this.apiServer + "/api/partner/groupOnboard",
{ headers }
{ headers },
);
if (hostResponse.data.data) {
@@ -1423,16 +1423,18 @@ export default class ContactsView extends Vue {
onNo: () => {
(this.$router as Router).push({ name: "onboard-meeting-list" });
},
noText: "Join Existing Meeting"
noText: "Join Existing Meeting",
},
-1
-1,
);
}
} catch (error) {
logConsoleAndDb("Error checking meeting status:" + errorStringForLog(error));
logConsoleAndDb(
"Error checking meeting status:" + errorStringForLog(error),
);
this.danger(
"There was an error checking your meeting status.",
"Meeting Error"
"Meeting Error",
);
}
}