Skip to content

Commit ac2abc6

Browse files
committed
src: it's superfluous to use the 'Warning message:' prefix
1 parent 558dbbe commit ac2abc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Notification.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export const ErrorNotification = ({ errorMessage, errorDetail, onDismiss }) => {
4747
export const WarningNotification = ({ warningMessage, warningDetail }) => {
4848
return (
4949
<Alert isInline variant='warning' title={warningMessage}>
50-
{ warningDetail && <p> {_("Warning message")}: <samp>{warningDetail}</samp> </p> }
50+
{ warningDetail && <p>{warningDetail}</p> }
5151
</Alert>
5252
);
5353
};

0 commit comments

Comments
 (0)