We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b022a95 commit c62251cCopy full SHA for c62251c
src/forms/FormActions.jsx
@@ -13,7 +13,6 @@ export function FormActions({ submitLabel, cancelLabel, onCancel, isSubmiting, c
13
{isFunction(submitLabel) ? submitLabel(isSubmiting) : submitLabel}
14
</button>
15
<button type="button" className="btn btn-secondary" onClick={onCancel} disabled={isSubmiting}>
16
- {cancelLabel}
17
{isFunction(cancelLabel) ? cancelLabel(isSubmiting) : cancelLabel}
18
19
</div>
0 commit comments