1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-03 14:46:37 -04:00

more error handling

This commit is contained in:
2025-03-31 09:15:40 -04:00
parent 50c184fb21
commit ec7c9fae54
15 changed files with 114 additions and 143 deletions

View File

@ -23,6 +23,8 @@ const HitCounter = async ({ slug }: { slug: string }) => {
);
} catch (error) {
Sentry.captureException(error);
return <span title="Error getting views! :(">?</span>;
}
};