Skip to content

Commit

Permalink
fix(components): remove unused computed property
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonwoodland committed May 20, 2022
1 parent b59f508 commit 6498d64
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions components/views/files/upload/Upload.vue
Expand Up @@ -2,7 +2,7 @@
<script lang="ts">
import { FilePlusIcon, PlusIcon } from 'satellite-lucide-icons'
import Vue, { PropType } from 'vue'
import { mapState } from 'vuex'
import { mapState, mapGetters } from 'vuex'
import { Config } from '~/config'
import { PropCommonEnum } from '~/libraries/Enums/enums'
import { isHeic } from '~/utilities/FileType'
Expand Down Expand Up @@ -42,9 +42,6 @@ export default Vue.extend({
...mapState({
consentScan: (state) => (state as RootState).settings.consentScan,
}),
activeFriend(): Friend | undefined {
return this.$Hounddog.getActiveFriend(this.$store.state.friends)
},
},
methods: {
/**
Expand Down

0 comments on commit 6498d64

Please sign in to comment.