Files
react/node_modules/motion-utils/dist/es/format-error-message.mjs
2025-12-28 20:50:08 +00:00

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 };