I have a form in react js where user can add values.
const Demo = () => {
  const [date, setDate] = useState("");
  const onFinish = values => {
    console.log("Received values of form:", values);
  };
  const changeDate = v => {
    console.log(moment(v).format("HH"));
    setDate(moment(v).format("HH"));
  };
  return (
    <Form name="dynamic_form_nest_item" onFinish={onFinish} autoComplete="off">
      <Form.List name="users">
        {(fields, { add, remove }) => {
          return (
            <div>
              {fields.map(field => (
                <Space
                  key={field.key}
                  style={{ display: "flex", marginBottom: 8 }}
                  align="start"
                >
                  <Form.Item
                    {...field}
                    name={[field.name, "first"]}
                    fieldKey={[field.fieldKey, "first"]}
                    rules={[{ required: true, message: "Missing first name" }]}
                  >
                    <Input placeholder="First Name" />
                  </Form.Item>
                  <TimePicker
                    defaultValue={moment("12:08", format)}
                    format={format}
                    onChange={changeDate}
                  />
                  <p>{date}</p>
                  <MinusCircleOutlined
                    onClick={() => {
                      remove(field.name);
                    }}
                  />
                </Space>
              ))}
              <Form.Item>
                <Button
                  type="dashed"
                  onClick={() => {
                    add();
                  }}
                  block
                >
                  <PlusOutlined /> Add field
                </Button>
              </Form.Item>
            </div>
          );
        }}
      </Form.List>
      <Form.Item>
        <Button type="primary" htmlType="submit">
          Submit
        </Button>
      </Form.Item>
    </Form>There i have an issue when i try to set time in different components. For example:
User clicks on Add fields button 2 times appears 2 blocks of inputs where he could adds data. Then trying to set time in one component the value also is changing on the another component.
 Why this happening and how to solve the issue?
demo: https://codesandbox.io/s/peaceful-leavitt-yus0q?file=/index.js:337-2286
 
    