dashboard/frontend/node_modules/motion-utils/dist/es/format-error-message.mjs
2025-12-16 08:16:27 +09:00

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