Skip to content

Commit

Permalink
fix: expand import paths
Browse files Browse the repository at this point in the history
  • Loading branch information
pheekus committed Mar 29, 2024
1 parent 3ccf1fa commit 5a35700
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/elements/public/AttributeForm/AttributeForm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import type { NucleonV8N } from '../NucleonElement/types';

import { TranslatableMixin } from '../../../mixins/translatable';
import { BooleanSelector } from '@foxy.io/sdk/core';
import { InternalForm } from '../../internal/InternalForm';
import { InternalForm } from '../../internal/InternalForm/InternalForm';
import { html } from 'lit-html';

const NS = 'attribute-form';
Expand Down
2 changes: 1 addition & 1 deletion src/elements/public/CustomFieldForm/CustomFieldForm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type { TemplateResult } from 'lit-html';
import type { NucleonV8N } from '../NucleonElement/types';

import { TranslatableMixin } from '../../../mixins/translatable';
import { InternalForm } from '../../internal/InternalForm';
import { InternalForm } from '../../internal/InternalForm/InternalForm';
import { html } from 'lit-html';

const NS = 'custom-field-form';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import './index';

import { expect, fixture, html } from '@open-wc/testing';
import { GiftCardCodeForm } from './GiftCardCodeForm';
import { InternalForm } from '../../internal/InternalForm';
import { InternalForm } from '../../internal/InternalForm/InternalForm';
import { getTestData } from '../../../testgen/getTestData';

describe('GiftCardCodeForm', () => {
Expand Down

0 comments on commit 5a35700

Please sign in to comment.