Skip to content

Commit

Permalink
fix(com-pwa): form
Browse files Browse the repository at this point in the history
  • Loading branch information
AliMD committed Mar 6, 2023
1 parent 483b79a commit 6137da1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions uniquely/com-pwa/src/ui/page/new-order.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
StateMachineMixin,
UnresolvedMixin,
} from '@alwatr/element';
import { message } from '@alwatr/i18n';
import {message} from '@alwatr/i18n';

import {buttons, pageNewOrderStateMachine} from '../../manager/controller/new-order.js';
import {AlwatrOrderDetailBase} from '../stuff/order-detail-base.js';
Expand Down Expand Up @@ -73,7 +73,7 @@ export class AlwatrPageNewOrder extends StateMachineMixin(

protected render_state_shippingForm(): unknown {
this._logger.logMethod('render_state_shippingForm');
return html`<alwatr-page-order-shipping-form></alwatr-page-order-shipping-form>`;
return html`<alwatr-order-shipping-form></alwatr-order-shipping-form>`;
}

protected render_state_submitting(): unknown {
Expand Down
2 changes: 1 addition & 1 deletion uniquely/com-pwa/src/ui/stuff/order-shipping-form.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import type {AlwatrTextField} from '@alwatr/ui-kit/text-field/text-field.js';

declare global {
interface HTMLElementTagNameMap {
'alwatr-page-order-shipping-form': AlwatrPageOrderShoppingForm;
'alwatr-order-shipping-form': AlwatrPageOrderShoppingForm;
}
}

Expand Down

0 comments on commit 6137da1

Please sign in to comment.