Remove obselete service

pull/4016/head
Cagatay Civici 2023-06-01 14:11:17 +03:00
parent 8e9eb52639
commit cbcb8e7622
2 changed files with 0 additions and 23 deletions

View File

@ -293,19 +293,7 @@
</template>
<script>
import FetchPricing from '@/service/PricingService';
export default {
data() {
return {
pricing: null
};
},
mounted() {
FetchPricing().then((data) => {
this.pricing = data;
});
},
methods: {
isDarkTheme() {
return this.$appState.darkTheme === true;

View File

@ -1,11 +0,0 @@
async function fetchPricing() {
try {
const response = await fetch('https://www.primefaces.org/cdn/pricing/uikit.json', { cache: 'no-store' });
return response.json();
} catch {
return null;
}
}
export default fetchPricing;