Skip to content

Commit

Permalink
Remove unused issueType property on SupportForm.
Browse files Browse the repository at this point in the history
  • Loading branch information
sbruens committed Sep 26, 2023
1 parent 5a716c2 commit 004e783
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/www/views/contact_view/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,6 @@ export class ContactView extends LitElement {
<support-form
${ref(this.formRef)}
.variant=${this.variant}
.issueType=${this.selectedIssueType}
.disabled=${this.isFormSubmitting}
@cancel=${this.reset}
@submit=${this.submitForm}
Expand Down
2 changes: 0 additions & 2 deletions src/www/views/contact_view/support_form/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ import '@material/mwc-select';
import '@material/mwc-textarea';
import '@material/mwc-textfield';
import {CardType} from '../../shared/card';
import {IssueType} from '../issue_type';
import {AppType} from '../app_type';
import {TextField} from '@material/mwc-textfield';
import {SelectedDetail} from '@material/mwc-menu/mwc-menu-base';
Expand Down Expand Up @@ -79,7 +78,6 @@ export class SupportForm extends LitElement {

@property({type: Boolean}) disabled = false;
@property({type: String}) variant: AppType = AppType.CLIENT;
@property({type: String}) issueType: IssueType = IssueType.GENERAL;

private readonly formRef: Ref<HTMLFormElement> = createRef();
@state() private formData: FormValues = {};
Expand Down

0 comments on commit 004e783

Please sign in to comment.