refactor: move GoogleMeetAccountModal to Settings folder

Move GoogleMeetAccountModal.vue from Modals to Settings directory
to colocate it with GoogleMeetSettings.vue. Update import path.
This commit is contained in:
Vaibhav Rathore
2026-02-27 19:55:50 +05:30
parent 507938425c
commit c5998f95ee
2 changed files with 1 additions and 1 deletions

View File

@@ -116,7 +116,7 @@ import { computed, inject, onMounted, ref } from 'vue'
import { Plus, Trash2 } from 'lucide-vue-next'
import { cleanError } from '@/utils'
import { User } from '@/components/Settings/types'
import GoogleMeetAccountModal from '@/components/Modals/GoogleMeetAccountModal.vue'
import GoogleMeetAccountModal from '@/components/Settings/GoogleMeetAccountModal.vue'
const user = inject<User | null>('$user')
const showForm = ref(false)