From fb3d35f92fceed465dd87021917fb83a8d1dd371 Mon Sep 17 00:00:00 2001 From: Vitor Mattos Date: Thu, 11 Jan 2024 23:52:27 -0300 Subject: [PATCH] Remove wrong await Signed-off-by: Vitor Mattos --- src/VuePdfEditor.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/VuePdfEditor.vue b/src/VuePdfEditor.vue index 4554e94..3d2d4a8 100644 --- a/src/VuePdfEditor.vue +++ b/src/VuePdfEditor.vue @@ -659,7 +659,7 @@ export default { if (this.sealImageShow) { for (let i = 0; i < this.pages.length; i++) { const seal = this.allObjects[i].find((e) => e.isSealImage === true) - const page = await this.pages[i] + const page = this.pages[i] sealInfo.push({ page: page._pageIndex, pageWidth: page._pageInfo.view[2],