chore: removed sponsorship prompts

This commit is contained in:
liyasthomas
2021-06-28 17:27:03 +05:30
parent b750ccd46f
commit 22c3ffcc02
14 changed files with 14 additions and 852 deletions

View File

@@ -1,28 +0,0 @@
<template>
<SmartModal v-if="show" @close="hideModal">
<template #header>
<h3 class="heading">{{ $t("support_us") }}</h3>
<div>
<button class="icon button" @click="hideModal">
<i class="material-icons">close</i>
</button>
</div>
</template>
<template #body>
<AppContributors />
</template>
</SmartModal>
</template>
<script>
export default {
props: {
show: Boolean,
},
methods: {
hideModal() {
this.$emit("hide-modal")
},
},
}
</script>