8 lines
246 B
JavaScript
8 lines
246 B
JavaScript
function formatErrorMessage(message, errorCode) {
|
|
return errorCode
|
|
? `${message}. For more information and steps for solving, visit https://motion.dev/troubleshooting/${errorCode}`
|
|
: message;
|
|
}
|
|
|
|
export { formatErrorMessage };
|