Skip to content

Commit

Permalink
fix(foxy-customer-portal): hide customer form header
Browse files Browse the repository at this point in the history
Closes #179
  • Loading branch information
pheekus committed Dec 11, 2024
1 parent b9aa573 commit bccae77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ describe('InternalCustomerPortalLoggedOutView', () => {
expect(form).to.have.attribute('disabledcontrols', 'abc:def');
expect(form).to.have.attribute(
'hiddencontrols',
'tax-id is-anonymous password-old forgot-password timestamps delete qux'
'header tax-id is-anonymous password-old forgot-password timestamps delete qux'
);
expect(form).to.have.attribute('parent', 'foxy://customer-api/signup');
expect(form).to.have.attribute('group', 'test');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,7 @@ export class InternalCustomerPortalLoggedOutView extends Base<Data> {
private readonly __renderSignUpForm = () => {
const scope = 'sign-up:form';
const hidden = [
'header',
'tax-id',
'is-anonymous',
'password-old',
Expand Down

0 comments on commit bccae77

Please sign in to comment.