diff --git a/app/components/Pp/PriceCard.vue b/app/components/Pp/PriceCard.vue
index f9fc9e8..c2a1c3a 100755
--- a/app/components/Pp/PriceCard.vue
+++ b/app/components/Pp/PriceCard.vue
@@ -49,7 +49,7 @@
{{ intl.format(ppl) }}
- Pro 100 {{ card.layers ? `(${card.layers})` : '' }}
+ Pro 1000 {{ card.layers ? `(${card.layers})` : '' }}
@@ -95,7 +95,7 @@ const { lengthX, direction, isSwiping } = useSwipe(top, {
const priceClean = computed(() => +replaceComma(card.price))
const ppr = computed(() => priceClean.value / +card.roles)
const pps = computed(() => (ppr.value / +card.sheets) * 100)
-const ppl = computed(() => (pps.value / +card.layers))
+const ppl = computed(() => (pps.value / +card.layers) * 10)
const update = () => emit('update')