File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/ui-client/src/components/Modal/GenericModal Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -154,12 +154,12 @@ const GenericModal = ({
154154 </ Button >
155155 ) }
156156 { wrapperFunction && (
157- < Button { ...getButtonProps ( variant ) } type = 'submit' loading = { confirmLoading } disabled = { confirmDisabled } >
157+ < Button { ...getButtonProps ( variant ) } type = 'submit' disabled = { confirmDisabled } loading = { confirmLoading } >
158158 { confirmText ?? t ( 'Ok' ) }
159159 </ Button >
160160 ) }
161161 { ! wrapperFunction && onConfirm && (
162- < Button { ...getButtonProps ( variant ) } onClick = { handleConfirm } loading = { confirmLoading } disabled = { confirmDisabled } >
162+ < Button { ...getButtonProps ( variant ) } onClick = { handleConfirm } disabled = { confirmDisabled } loading = { confirmLoading } >
163163 { confirmText ?? t ( 'Ok' ) }
164164 </ Button >
165165 ) }
You can’t perform that action at this time.
0 commit comments