We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37fb02e commit aaea690Copy full SHA for aaea690
src/webview/components/Wizard/Renderer.tsx
@@ -13,7 +13,7 @@ interface Props {
13
export const Renderer: React.FC<Props> = ({ wizard, vscode }) => {
14
const isSingleTab = wizard.tabs.length === 1;
15
const initialValues: FormikValues = wizard.tabs.reduce((acc: FormikValues, tab) => {
16
- tab.fields.reduce((acc: FormikValues, field) => {
+ tab.fields.reduce((_: FormikValues, field) => {
17
if (field.type === WizardInput.Select && field.multiple) {
18
acc[field.id] = field.initialValue ?? [];
19
return acc;
0 commit comments