We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1426176 commit 3f1804aCopy full SHA for 3f1804a
src/library-authoring/containers/ContainerInfo.tsx
@@ -151,15 +151,14 @@ const ContainerActions = ({
151
};
152
153
/* istanbul ignore next */
154
-const ContainerSettings = () => {
155
- const intl = useIntl();
156
- return (
157
- <Alert icon={InfoOutline} variant="info">
158
- <p>{intl.formatMessage(messages.containerSettingsMsg)}</p>
159
- </Alert>
160
- );
161
-};
162
-
+/* istanbul ignore next */
+const ContainerSettings = () => (
+ <Alert icon={InfoOutline} variant="info">
+ <p>
+ <FormattedMessage {...messages.containerSettingsMsg}/>
+ </p>
+ </Alert>
+);
163
const ContainerInfo = () => {
164
const intl = useIntl();
165
const {
0 commit comments