Rocky_Mountain_Vending/.pnpm-store/v10/files/85/16a20375db655b309f76b17253fde285306b33bf7b9b737e2316fc5d28ce899b5e35a05fbde8ba501c498ef828fc371ff4b64f48ec014da832f8f112e9e693
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

28 lines
722 B
Text

/**
* Get a list of possible event messages from a Sentry event.
*/
function getPossibleEventMessages(event) {
const possibleMessages = [];
if (event.message) {
possibleMessages.push(event.message);
}
try {
// @ts-expect-error Try catching to save bundle size
const lastException = event.exception.values[event.exception.values.length - 1];
if (lastException?.value) {
possibleMessages.push(lastException.value);
if (lastException.type) {
possibleMessages.push(`${lastException.type}: ${lastException.value}`);
}
}
} catch {
// ignore errors here
}
return possibleMessages;
}
export { getPossibleEventMessages };
//# sourceMappingURL=eventUtils.js.map