Web:Components:Removed sectionWidth.

This commit is contained in:
Vlada Gazizova 2022-03-23 22:09:48 +03:00
parent e05b78bef4
commit d7775bffa7

View File

@ -43,7 +43,6 @@ class SaveCancelButtons extends React.Component {
reminderTest,
saveButtonLabel,
cancelButtonLabel,
sectionWidth,
hasChanged,
hasScroll,
className,
@ -59,7 +58,6 @@ class SaveCancelButtons extends React.Component {
className={className}
id={id}
displaySettings={displaySettings}
sectionWidth={sectionWidth}
showReminder={showReminder}
hasScroll={hasScroll}
>
@ -106,7 +104,6 @@ SaveCancelButtons.propTypes = {
/** Show message about unsaved changes (Only shown on desktops) */
showReminder: PropTypes.bool,
displaySettings: PropTypes.bool,
sectionWidth: PropTypes.number,
hasChanged: PropTypes.bool,
hasScroll: PropTypes.bool,
};