diff --git a/apps/wallet-mobile/src/features/Staking/Governance/useCases/Home/HomeScreen.tsx b/apps/wallet-mobile/src/features/Staking/Governance/useCases/Home/HomeScreen.tsx index 90e616fde1..d7db93c95e 100644 --- a/apps/wallet-mobile/src/features/Staking/Governance/useCases/Home/HomeScreen.tsx +++ b/apps/wallet-mobile/src/features/Staking/Governance/useCases/Home/HomeScreen.tsx @@ -366,39 +366,6 @@ const isTxConfirmed = (txId: string, txInfos: Record) = return Object.values(txInfos).some((tx) => tx.id === txId) } -const RegisterStakingKeyOperation = () => { - const {styles} = useStyles() - const strings = useStrings() - - return ( - - {strings.registerStakingKey} - - ) -} - -const AbstainOperation = () => { - const {styles} = useStyles() - const strings = useStrings() - - return ( - - {strings.selectAbstain} - - ) -} - -const NoConfidenceOperation = () => { - const {styles} = useStyles() - const strings = useStrings() - - return ( - - {strings.selectNoConfidence} - - ) -} - const useStyles = () => { const {color, atoms} = useTheme() @@ -430,14 +397,6 @@ const useStyles = () => { color: color.text_gray_low, ...atoms.body_3_sm_regular, }, - operation: { - ...atoms.flex_row, - ...atoms.align_center, - }, - operationText: { - ...atoms.body_2_md_regular, - color: color.text_gray_medium, - }, }) return {styles} as const