diff --git a/static/scripts/render-manifest.ts b/static/scripts/render-manifest.ts index 50208e1..66a98e9 100644 --- a/static/scripts/render-manifest.ts +++ b/static/scripts/render-manifest.ts @@ -3,7 +3,7 @@ import { ManifestCache, ManifestPreDecode, ManifestProps, Plugin } from "../type import { ConfigParser } from "./config-parser"; import { AuthService } from "./authentication"; import AJV, { AnySchemaObject } from "ajv"; -import { createElement, createInputRow } from "../utils/ele-helpers"; +import { createElement, createInputRow } from "../utils/element-helpers"; import { toastNotification } from "../utils/toaster"; const ajv = new AJV({ allErrors: true, coerceTypes: true, strict: true }); diff --git a/static/utils/ele-helpers.ts b/static/utils/element-helpers.ts similarity index 100% rename from static/utils/ele-helpers.ts rename to static/utils/element-helpers.ts diff --git a/static/utils/toaster.ts b/static/utils/toaster.ts index 3fba532..abbb6db 100644 --- a/static/utils/toaster.ts +++ b/static/utils/toaster.ts @@ -1,4 +1,4 @@ -import { createElement } from "./ele-helpers"; +import { createElement } from "./element-helpers"; export function toastNotification( message: string,