Skip to content

Commit

Permalink
🐛 fix: no extra
Browse files Browse the repository at this point in the history
  • Loading branch information
rdmclin2 committed Sep 16, 2023
1 parent 0514c49 commit 02ff8b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FieldSelect/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ const FieldSelect: React.FC<FieldSelectProps> = (props) => {
options={(options || []).map((item: FieldSelectOptionType) => {
const { label, value, type, description } = item;
return {
label: <FieldTitle type={type} title={label} description={description} extra={123} />,
label: <FieldTitle type={type} title={label} description={description} />,
value,
key: value,
};
Expand Down

0 comments on commit 02ff8b3

Please sign in to comment.