-
- {!connected ? (
- <>
-
- Connect wallet to see options
-
- >
- ) : (
- <>
-
- Get notifications for proposals, voting, and results. Add your email
- address, phone number, and/or Telegram.
-
-
- {errorMessage.length > 0 ? (
-
{errorMessage}
- ) : (
- !isAuthenticated && (
-
- When prompted, sign the transaction.
-
- )
- )}
-
-
-
- }
- label="email"
- >
-
-
-
- {telegramEnabled && (
-
- }
- label="Telegram"
- >
-
-
- )}
-
-
-
-
-
-
-
- >
- )}
-
- )
-}
-
-interface InputRowProps {
- label: string
- icon: React.ReactNode
-}
-
-export const InputRow: FunctionComponent