33import '@neynar/react/dist/style.css' ;
44import React , { FC , useCallback , useEffect , useRef , useState } from 'react' ;
55import { Web3ProviderInterface } from '@gitroom/frontend/components/launches/web3/web3.provider.interface' ;
6- import { TopTitle } from '@gitroom/frontend/components/launches/helpers/top.title.component' ;
7- import { useModals } from '@gitroom/frontend/components/layout/new-modal' ;
86import { useFetch } from '@gitroom/helpers/utils/custom.fetch' ;
97import { timer } from '@gitroom/helpers/utils/timer' ;
108import { makeId } from '@gitroom/nestjs-libraries/services/make.is' ;
@@ -17,7 +15,6 @@ import { useT } from '@gitroom/react/translation/get.transation.service.client';
1715export const TelegramProvider : FC < Web3ProviderInterface > = ( props ) => {
1816 const { onComplete, nonce } = props ;
1917 const { telegramBotName } = useVariables ( ) ;
20- const modal = useModals ( ) ;
2118 const fetch = useFetch ( ) ;
2219 const word = useRef ( makeId ( 4 ) ) ;
2320 const stop = useRef ( false ) ;
@@ -66,32 +63,10 @@ export const TelegramProvider: FC<Web3ProviderInterface> = (props) => {
6663 } ;
6764 } , [ ] ) ;
6865 return (
69- < div className = "rounded-[4px] border border-customColor6 bg-sixth px-[16px] pb-[16px] relative w-[700px]" >
70- < TopTitle title = { `Add Telegram` } />
71- < button
72- className = "outline-none absolute end-[20px] top-[20px] mantine-UnstyledButton-root mantine-ActionIcon-root hover:bg-tableBorder cursor-pointer mantine-Modal-close mantine-1dcetaa"
73- type = "button"
74- onClick = { ( ) => modal . closeAll ( ) }
75- >
76- < svg
77- viewBox = "0 0 15 15"
78- fill = "none"
79- xmlns = "http://www.w3.org/2000/svg"
80- width = "16"
81- height = "16"
82- >
83- < path
84- d = "M11.7816 4.03157C12.0062 3.80702 12.0062 3.44295 11.7816 3.2184C11.5571 2.99385 11.193 2.99385 10.9685 3.2184L7.50005 6.68682L4.03164 3.2184C3.80708 2.99385 3.44301 2.99385 3.21846 3.2184C2.99391 3.44295 2.99391 3.80702 3.21846 4.03157L6.68688 7.49999L3.21846 10.9684C2.99391 11.193 2.99391 11.557 3.21846 11.7816C3.44301 12.0061 3.80708 12.0061 4.03164 11.7816L7.50005 8.31316L10.9685 11.7816C11.193 12.0061 11.5571 12.0061 11.7816 11.7816C12.0062 11.557 12.0062 11.193 11.7816 10.9684L8.31322 7.49999L11.7816 4.03157Z"
85- fill = "currentColor"
86- fillRule = "evenodd"
87- clipRule = "evenodd"
88- > </ path >
89- </ svg >
90- </ button >
66+ < >
9167 < div className = "justify-center items-center flex flex-col pt-[16px]" >
9268 < div >
93- { t ( 'please_add' , 'Please add' ) } { ' ' }
94- < strong > @{ telegramBotName } </ strong > { ' ' }
69+ { t ( 'please_add' , 'Please add' ) } < strong > @{ telegramBotName } </ strong > { ' ' }
9570 { t (
9671 'to_your_telegram_group_channel_and_click_here' ,
9772 'to your\n telegram group / channel and click here:'
@@ -145,6 +120,6 @@ export const TelegramProvider: FC<Web3ProviderInterface> = (props) => {
145120 </ div >
146121 ) }
147122 </ div >
148- </ div >
123+ </ >
149124 ) ;
150125} ;
0 commit comments