Skip to content

Commit

Permalink
fix: remove unecessary undefined prop value
Browse files Browse the repository at this point in the history
  • Loading branch information
rpenido committed Sep 9, 2024
1 parent 7e0fb5c commit 7a03d83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Container/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Container.propTypes = {
/** Fill all available space at any breakpoint */
fluid: PropTypes.bool,
/** Set the maximum width for the container. Omiting the prop will remove the max-width */
size: PropTypes.oneOf(['xs', 'sm', 'md', 'lg', 'xl', undefined]),
size: PropTypes.oneOf(['xs', 'sm', 'md', 'lg', 'xl']),
/** Overrides underlying component base CSS class name */
bsPrefix: PropTypes.string,
};
Expand Down

0 comments on commit 7a03d83

Please sign in to comment.