Browse Source

fix(dashboard): Correct import path for RichTextInput component

David Höck 6 months ago
parent
commit
462708a627

+ 1 - 1
packages/dashboard/src/app/routes/_authenticated/_collections/collections_.$id.tsx

@@ -1,4 +1,4 @@
-import { RichTextInput } from '@/vdb/components/data-input/richt-text-input.js';
+import { RichTextInput } from '@/vdb/components/data-input/rich-text-input.js';
 import { EntityAssets } from '@/vdb/components/shared/entity-assets.js';
 import { ErrorPage } from '@/vdb/components/shared/error-page.js';
 import { FormFieldWrapper } from '@/vdb/components/shared/form-field-wrapper.js';

+ 1 - 1
packages/dashboard/src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx

@@ -1,4 +1,4 @@
-import { RichTextInput } from '@/vdb/components/data-input/richt-text-input.js';
+import { RichTextInput } from '@/vdb/components/data-input/rich-text-input.js';
 import { ErrorPage } from '@/vdb/components/shared/error-page.js';
 import { FormFieldWrapper } from '@/vdb/components/shared/form-field-wrapper.js';
 import { PermissionGuard } from '@/vdb/components/shared/permission-guard.js';

+ 1 - 1
packages/dashboard/src/app/routes/_authenticated/_products/products_.$id.tsx

@@ -1,4 +1,4 @@
-import { RichTextInput } from '@/vdb/components/data-input/richt-text-input.js';
+import { RichTextInput } from '@/vdb/components/data-input/rich-text-input.js';
 import { AssignedFacetValues } from '@/vdb/components/shared/assigned-facet-values.js';
 import { EntityAssets } from '@/vdb/components/shared/entity-assets.js';
 import { ErrorPage } from '@/vdb/components/shared/error-page.js';

+ 1 - 1
packages/dashboard/src/app/routes/_authenticated/_promotions/promotions_.$id.tsx

@@ -1,5 +1,5 @@
 import { DateTimeInput } from '@/vdb/components/data-input/datetime-input.js';
-import { RichTextInput } from '@/vdb/components/data-input/richt-text-input.js';
+import { RichTextInput } from '@/vdb/components/data-input/rich-text-input.js';
 import { ErrorPage } from '@/vdb/components/shared/error-page.js';
 import { FormFieldWrapper } from '@/vdb/components/shared/form-field-wrapper.js';
 import { PermissionGuard } from '@/vdb/components/shared/permission-guard.js';