Hi Stephen,
You can try to set the default value of a field std
to save this value without selecting the time. Like this
'fields' => [
[
'name' => __( 'Time', 'your-text-domain' ),
'id' => $prefix . 'time',
'type' => 'time',
'std' => '00:00',
'js_options' => [
'hour' => 00,
'minute' => 00,
],
],
],