Skip to content

Commit

Permalink
removed unnecessary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Anzhela-Sahakyan committed Oct 18, 2024
1 parent 5e2fce9 commit 86e47f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Body/Fields/Time/Time.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const Time = ({
}) => {
return (
<>
{getTimeFields(format, placeholders).map((item) => {
{getTimeFields(format, placeholders).map(item => {
const { key, placeholder } = item
return (
<Fragment key={`${id}.${key}`}>
Expand All @@ -41,7 +41,7 @@ const Time = ({
<Select
{...props}
id={`${id}.${key}`}
initial={initials?.format || 1}
initial={initials?.format === 'PM' ? 2 : 1}
options={[
{ key: 1, value: 'AM' },
{ key: 2, value: 'PM' }
Expand Down

0 comments on commit 86e47f2

Please sign in to comment.