From 06a41a1b55bb0905f40a0d87545c57dee0a13c3f Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Wed, 1 Jan 2025 01:57:17 -0700 Subject: [PATCH] Add missing semicolon --- module/Apps/CryptApp.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/Apps/CryptApp.mjs b/module/Apps/CryptApp.mjs index 09b2cf8..0669b27 100644 --- a/module/Apps/CryptApp.mjs +++ b/module/Apps/CryptApp.mjs @@ -29,7 +29,7 @@ export class CryptApp extends GenericAppMixin(HandlebarsApplicationMixin(Applica const frame = await super._renderFrame(options); this.window.close.remove(); // Prevent closing return frame; - } + }; async _preparePartContext(partId, ctx, opts) { ctx = await super._preparePartContext(partId, ctx, opts);