Skip to content

Commit

Permalink
fix: adjust build steps, address type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
dominik-stumpf committed Dec 11, 2024
1 parent b67e05e commit 468f2da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,5 +183,7 @@ module.exports = withSentryConfig(
// https://docs.sentry.io/product/crons/
// https://vercel.com/docs/cron-jobs
automaticVercelMonitors: true,

sourcemaps: { deleteSourcemapsAfterUpload: true },
}
);
2 changes: 1 addition & 1 deletion src/components/GenericError.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const GenericError = ({ error }: { error: CustomError | ZodError }) => {
</CollapsibleContent>
</Collapsible>
)}
{error.recoverable && (
{convergedError.recoverable && (
<Button
onClick={resetBoundary}
variant="subtle"
Expand Down

0 comments on commit 468f2da

Please sign in to comment.