Rename the Artist/Image App files to match the app's class name

This commit is contained in:
Oliver 2026-01-26 23:40:55 -07:00
parent 547816701d
commit dc3224fb6a
4 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
// Applications
import { ArtBrowser } from "./apps/ArtBrowser.mjs";
import { ArtistApp } from "./apps/Artist.mjs";
import { ImageApp } from "./apps/Image.mjs";
import { ArtistApp } from "./apps/ArtistApp.mjs";
import { ImageApp } from "./apps/ImageApp.mjs";
// Utils
import { getFile, hashFile, lastModifiedAt, uploadJson } from "./utils/fs.mjs";

View file

@ -1,7 +1,7 @@
import { __ID__, filePath } from "../consts.mjs";
import { getFile, lastModifiedAt } from "../utils/fs.mjs";
import { paginate } from "../utils/pagination.mjs";
import { ImageApp } from "./Image.mjs";
import { ImageApp } from "./ImageApp.mjs";
const { HandlebarsApplicationMixin, ApplicationV2 } = foundry.applications.api;
const { FormDataExtended } = foundry.applications.ux;