Skip to content

Commit 9e9c1b3

Browse files
committed
Shorten message. We can add more hints to the decoder page
1 parent 4c7dd4f commit 9e9c1b3

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

packages/material-ui-utils/src/index.js

+1-5
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,5 @@ export function formatMuiErrorMessage(code, ...args) {
1313
args.forEach((arg) => {
1414
url += `args[]=${encodeURIComponent(arg)}&`;
1515
});
16-
return (
17-
`Minified Material-UI error #${code}; visit ${url} for the full message or ` +
18-
'use the non-minified dev environment for full errors and additional ' +
19-
'helpful warnings.'
20-
);
16+
return `Minified Material-UI error #${code}; visit ${url} for the full message.`;
2117
}

0 commit comments

Comments
 (0)