aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/forms/comment-form/comment-form.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/organisms/forms/comment-form/comment-form.tsx')
-rw-r--r--src/components/organisms/forms/comment-form/comment-form.tsx16
1 files changed, 7 insertions, 9 deletions
diff --git a/src/components/organisms/forms/comment-form/comment-form.tsx b/src/components/organisms/forms/comment-form/comment-form.tsx
index e645ede..b5f2d64 100644
--- a/src/components/organisms/forms/comment-form/comment-form.tsx
+++ b/src/components/organisms/forms/comment-form/comment-form.tsx
@@ -117,6 +117,12 @@ export const CommentForm: FC<CommentFormProps> = ({
id: 'dz2kDV',
});
+ const loadingMsg = intl.formatMessage({
+ defaultMessage: 'Submitting...',
+ description: 'CommentForm: spinner message on submit',
+ id: 'IY5ew6',
+ });
+
const formAriaLabel = title ? undefined : formTitle;
const formId = useId();
const formLabelledBy = title ? formId : undefined;
@@ -246,15 +252,7 @@ export const CommentForm: FC<CommentFormProps> = ({
id: 'OL0Yzx',
})}
</Button>
- {isSubmitting ? (
- <Spinner
- message={intl.formatMessage({
- defaultMessage: 'Submitting...',
- description: 'CommentForm: spinner message on submit',
- id: 'IY5ew6',
- })}
- />
- ) : null}
+ {isSubmitting ? <Spinner>{loadingMsg}</Spinner> : null}
{Notice}
</Form>
);