aboutsummaryrefslogtreecommitdiff
path: root/front-end/src/views/Account
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-11-08 13:58:15 -0500
committerLibravatar vnugent <public@vaughnnugent.com>2023-11-08 13:58:15 -0500
commitfe13cc073a5bcd409b96a5539d6fd308605f9ac2 (patch)
tree10308288693d75c9eac7ff2edb45d9f16264fbaf /front-end/src/views/Account
parent8ae86c70aa832ce2fd1f3abab5b017e3ac2fa83e (diff)
big package updates & update some chunk splitting
Diffstat (limited to 'front-end/src/views/Account')
-rw-r--r--front-end/src/views/Account/components/profile/Profile.vue3
-rw-r--r--front-end/src/views/Account/components/settings/Security.vue2
2 files changed, 2 insertions, 3 deletions
diff --git a/front-end/src/views/Account/components/profile/Profile.vue b/front-end/src/views/Account/components/profile/Profile.vue
index d742c86..0b0a6dd 100644
--- a/front-end/src/views/Account/components/profile/Profile.vue
+++ b/front-end/src/views/Account/components/profile/Profile.vue
@@ -62,8 +62,7 @@ import { defaultTo } from 'lodash-es'
import useVuelidate from '@vuelidate/core'
import { ref, computed, watch } from 'vue'
import { Rules, FormSchema } from './profile-schema.ts'
-import { apiCall, useMessage, useWait, useDataBuffer, useUser, useVuelidateWrapper } from '@vnuge/vnlib.browser'
-import { IUserProfile } from '@vnuge/vnlib.browser/dist/user'
+import { apiCall, useMessage, useWait, useDataBuffer, useUser, useVuelidateWrapper, IUserProfile } from '@vnuge/vnlib.browser'
const ACCOUNT_URL = '/account/profile'
diff --git a/front-end/src/views/Account/components/settings/Security.vue b/front-end/src/views/Account/components/settings/Security.vue
index 42b7389..1f2d06d 100644
--- a/front-end/src/views/Account/components/settings/Security.vue
+++ b/front-end/src/views/Account/components/settings/Security.vue
@@ -52,7 +52,7 @@
</template>
<script setup lang="ts">
-import { useAutoHeartbeat, useMfaConfig, MfaMethod, usePkiConfig } from '@vnuge/vnlib.browser'
+import { useAutoHeartbeat, useMfaConfig, MfaMethod, usePkiConfig } from '@vnuge/vnlib.browser'
import { computed } from 'vue'
import { Switch } from '@headlessui/vue'
import { includes } from 'lodash-es'