From 605bdb61ae52d50113abde64ece38f507df1adcb Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Mon, 10 Feb 2025 23:26:02 -0700 Subject: [PATCH] Fix import sort --- module/Apps/ActorSheets/CombinedHeroSheet.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/Apps/ActorSheets/CombinedHeroSheet.mjs b/module/Apps/ActorSheets/CombinedHeroSheet.mjs index 5bad10a..579a333 100644 --- a/module/Apps/ActorSheets/CombinedHeroSheet.mjs +++ b/module/Apps/ActorSheets/CombinedHeroSheet.mjs @@ -1,9 +1,9 @@ import { filePath } from "../../consts.mjs"; import { GenericAppMixin } from "../GenericApp.mjs"; +import { HeroCraftCardV1 } from "./HeroCraftCardV1.mjs"; import { HeroSkillsCardV1 } from "./HeroSkillsCardV1.mjs"; import { HeroSummaryCardV1 } from "./HeroSummaryCardV1.mjs"; import { Logger } from "../../utils/Logger.mjs"; -import { HeroCraftCardV1 } from "./HeroCraftCardV1.mjs"; const { HandlebarsApplicationMixin } = foundry.applications.api; const { ActorSheetV2 } = foundry.applications.sheets;