File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
govtool/frontend/src/hooks Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ changes.
2626### Removed
2727
2828- Remove logging to sentry for DRep registration transaction [ Issue 2681] ( https://github.com/IntersectMBO/govtool/issues/2681 )
29+ - Remove logging to sentry when delegation transaction fails [ Issue 2682] ( https://github.com/IntersectMBO/govtool/issues/2682 )
2930
3031## [ v2.0.7] ( https://github.com/IntersectMBO/govtool/releases/tag/v2.0.7 ) 2025-01-20
3132
Original file line number Diff line number Diff line change 11import { useCallback , useState } from "react" ;
2- import * as Sentry from "@sentry/react" ;
32
43import { useCardano , useSnackbar } from "@context" ;
54import { useGetVoterInfo , useTranslation , useWalletErrorModal } from "@hooks" ;
@@ -60,8 +59,6 @@ export const useDelegateTodRep = () => {
6059 : ( error as { message : string | null } ) ?. message ,
6160 dataTestId : "delegate-transaction-error-modal" ,
6261 } ) ;
63- Sentry . setTag ( "hook" , "useDelegateTodRep" ) ;
64- Sentry . captureException ( error ) ;
6562 } finally {
6663 setIsDelegating ( null ) ;
6764 }
You can’t perform that action at this time.
0 commit comments