From 28035f9516d84250a1fddb0275a01024caa0f637 Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Sun, 1 Nov 2020 22:22:41 +0100 Subject: [PATCH] fix build by making name optional --- components/inputWrapper.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/inputWrapper.tsx b/components/inputWrapper.tsx index 32a536d..b6200b8 100644 --- a/components/inputWrapper.tsx +++ b/components/inputWrapper.tsx @@ -3,7 +3,7 @@ import Required from './required' export default function Input(props: { label: string - name: string + name?: string required: boolean children: React.ReactNode }) {