Skip to content

Commit

Permalink
fix(components): correct imports
Browse files Browse the repository at this point in the history
  • Loading branch information
dargmuesli committed Sep 21, 2022
1 parent 9bb1d79 commit 50254e1
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions nuxt/assets/images/blank-profile-picture.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion nuxt/components/account/AccountProfilePicture.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { useNuxtApp } from '#app'
import { TUSD_FILES_URL } from '~/plugins/util/validation'
import { getApiMeta } from '~/plugins/util/util'
import { useProfilePictureByUsernameQuery } from '~/gql/generated'
import blankProfilePicture from '~/assets/static/images/blank-profile-picture.svg'
import blankProfilePicture from '~/assets/images/blank-profile-picture.svg'
export default defineComponent({
props: {
Expand Down
2 changes: 1 addition & 1 deletion nuxt/components/contact/ContactAvatar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<script lang="ts">
import { computed, defineComponent, PropType } from 'vue'
import blankProfilePicture from '~/assets/static/images/blank-profile-picture.svg'
import blankProfilePicture from '~/assets/images/blank-profile-picture.svg'
export default defineComponent({
props: {
Expand Down

0 comments on commit 50254e1

Please sign in to comment.