fix linting

This commit is contained in:
2025-02-03 20:37:46 -07:00
parent 1b869a23b0
commit 03bfd364ce
3 changed files with 40 additions and 14 deletions

View File

@@ -208,7 +208,7 @@
<MembersList
:password="currentMeeting.password || ''"
decrypt-failure-message="Unable to decrypt some member information. Please check your password or have them reset theirs."
:decrypt-failure-message="DECRYPT_FAILURE_MESSAGE"
:show-organizer-tools="true"
@error="handleMembersError"
class="mt-8"
@@ -264,6 +264,9 @@ export default class OnboardMeetingView extends Vue {
timeout?: number,
) => void;
DECRYPT_FAILURE_MESSAGE =
"Unable to decrypt some member information. Check your password, or have them reset theirs.";
currentMeeting: ServerMeeting | null = null;
newOrUpdatedMeeting: MeetingSetupInfo | null = null;
activeDid = "";