dapoadedire / astro-pic-of-the-day

Local variable name shadows variable in outer scope JS-0123
Bug risk
Minor
1 occurrence in this check
'date' is already declared in the upper scope on line 12 column 10.
20          <form
21            onSubmit={(e) => {
22              e.preventDefault();
23              const date = e.target.date.value;24              setDate(date);
25            }}
26          >