diff --git a/public/tailwind.css b/public/tailwind.css index 9ac79ed8..0161ec81 100644 --- a/public/tailwind.css +++ b/public/tailwind.css @@ -1299,6 +1299,11 @@ video { background-color: rgb(0 0 0 / var(--tw-bg-opacity)); } +.bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgb(239 246 255 / var(--tw-bg-opacity)); +} + .bg-gray-100 { --tw-bg-opacity: 1; background-color: rgb(243 244 246 / var(--tw-bg-opacity)); @@ -1338,24 +1343,6 @@ video { background-color: rgb(255 255 255 / var(--tw-bg-opacity)); } -.bg-\[\] { - background-color: ; -} - -.bg-\[\#EEF2FF\] { - --tw-bg-opacity: 1; - background-color: rgb(238 242 255 / var(--tw-bg-opacity)); -} - -.bg-\[\#s\] { - background-color: #s; -} - -.bg-blue-50 { - --tw-bg-opacity: 1; - background-color: rgb(239 246 255 / var(--tw-bg-opacity)); -} - .bg-opacity-25 { --tw-bg-opacity: 0.25; } @@ -1524,6 +1511,10 @@ video { padding-bottom: 0.75rem; } +.pb-\[1px\] { + padding-bottom: 1px; +} + .pl-0 { padding-left: 0px; } @@ -2257,10 +2248,6 @@ video { flex-direction: row; } - .md\:flex-col { - flex-direction: column; - } - .md\:items-start { align-items: flex-start; } diff --git a/src/components/creatorsStaking/Creators/AccountPreview.tsx b/src/components/creatorsStaking/Creators/AccountPreview.tsx index 10a0b04b..de7fd6f0 100644 --- a/src/components/creatorsStaking/Creators/AccountPreview.tsx +++ b/src/components/creatorsStaking/Creators/AccountPreview.tsx @@ -43,7 +43,7 @@ const AccountPreview = ({ space, spaceId }: AccountPreviewProps) => { ) const accountDesc = ( -
+
{!!postsCount && postsLink} {
) - const contactInfo = { email, links } + const contactInfo = { email, links: links?.filter(x => x !== 'null') } const onChatButtonClick = (e: React.MouseEvent) => { e.stopPropagation() diff --git a/src/components/creatorsStaking/utils/GetSubInfoSection.tsx b/src/components/creatorsStaking/utils/GetSubInfoSection.tsx index 74802df6..83b9b639 100644 --- a/src/components/creatorsStaking/utils/GetSubInfoSection.tsx +++ b/src/components/creatorsStaking/utils/GetSubInfoSection.tsx @@ -23,7 +23,7 @@ export const GetSubInfoSection = () => { const subBalance = balanceByNetwork?.info?.['SUB'] const transferableBalance = getTransferableBalance(subBalance) return !transferableBalance.isZero() || loading - }, [loading]) + }, [ loading ]) if (hideInfoSection) return null diff --git a/src/components/transfer/configs/cross-chain.ts b/src/components/transfer/configs/cross-chain.ts index 6ca9ad66..75113f8f 100644 --- a/src/components/transfer/configs/cross-chain.ts +++ b/src/components/transfer/configs/cross-chain.ts @@ -46,8 +46,6 @@ hydraTokensConfig.SUB = { toRaw: () => 24, // 24 is the token id for SUB in Hydra DX } -console.log(hydraRouteConfigs, hydraTokensConfig) - const availableAdapters: Record = { polkadot: { adapter: new PolkadotAdapter(),