From 02ef9f4ce1bbb9fc35f1f1e754d10452a668add2 Mon Sep 17 00:00:00 2001 From: jasquat Date: Thu, 1 Jun 2023 10:55:46 -0400 Subject: [PATCH] a little cleanup w/ burnettk --- .../rjsf/custom_widgets/TypeaheadWidget/TypeaheadWidget.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/spiffworkflow-frontend/src/rjsf/custom_widgets/TypeaheadWidget/TypeaheadWidget.tsx b/spiffworkflow-frontend/src/rjsf/custom_widgets/TypeaheadWidget/TypeaheadWidget.tsx index 99423da2..9fdcded3 100644 --- a/spiffworkflow-frontend/src/rjsf/custom_widgets/TypeaheadWidget/TypeaheadWidget.tsx +++ b/spiffworkflow-frontend/src/rjsf/custom_widgets/TypeaheadWidget/TypeaheadWidget.tsx @@ -10,7 +10,6 @@ interface typeaheadArgs { uiSchema?: any; disabled?: boolean; readonly?: boolean; - required?: boolean; rawErrors?: any; } @@ -20,7 +19,6 @@ export default function TypeaheadWidget({ options: { category, itemFormat }, value, uiSchema, - required, disabled, readonly, rawErrors = [], @@ -96,7 +94,6 @@ export default function TypeaheadWidget({ placeholder={`Start typing to search for ${category}...`} selectedItem={selectedItem} helperText={helperText} - required={required} disabled={disabled} readOnly={readonly} invalid={invalid}