diff --git a/luckydiamond/src/pages/games-pages/SapergamePage.vue b/luckydiamond/src/pages/games-pages/SapergamePage.vue
index d68e2ca..20d248e 100644
--- a/luckydiamond/src/pages/games-pages/SapergamePage.vue
+++ b/luckydiamond/src/pages/games-pages/SapergamePage.vue
@@ -44,16 +44,12 @@
-
- 1 1
- 1 1
- 1 1
- 1 1
- 1 1
- 1 1
- 1 1
- 1 1
- 1 1
+
+
+
+
+
+
@@ -169,11 +165,11 @@ export default {
PercentageGameSteps(CrystalsCount) {
if (CrystalsCount >= 1) {
this.amountSaveCrystals = CrystalsCount
- setTimeout(() => {
+ setTimeout(async () => {
try {
- GetPercentageSteps(this.amountSaveCrystals)
+ await GetPercentageSteps(this.amountSaveCrystals)
.then((response) => {
- this.PercentageGameSteps.push(response)
+ this.PercentageGameSteps = response
console.log(response)
})
}