diff --git a/explorer/src/pages/Issuer/components/Banner/index.tsx b/explorer/src/pages/Issuer/components/Banner/index.tsx index efb76318..f16387d9 100644 --- a/explorer/src/pages/Issuer/components/Banner/index.tsx +++ b/explorer/src/pages/Issuer/components/Banner/index.tsx @@ -10,8 +10,7 @@ export const Banner: React.FC = ({ name, CTALink, CTATitle, logo, const IssuerLogo = logo; return (
-
+
diff --git a/explorer/src/pages/Issuer/components/Schemas/index.tsx b/explorer/src/pages/Issuer/components/Schemas/index.tsx index 0daf3622..7dff3ec5 100644 --- a/explorer/src/pages/Issuer/components/Schemas/index.tsx +++ b/explorer/src/pages/Issuer/components/Schemas/index.tsx @@ -33,11 +33,9 @@ export const Schemas: React.FC = ({ issuerSchemas }) => { key={`${issuerSchema.portal}-${issuerSchema.schema}`} className="group flex flex-col gap-4 border border-border-card dark:border-border-cardDark rounded-xl p-4 md:p-6 hover:bg-surface-secondary dark:hover:bg-surface-secondaryDark transition md:min-h-[20rem]" > -
+
- +
{issuerSchema.name}
diff --git a/explorer/src/pages/Issuer/index.tsx b/explorer/src/pages/Issuer/index.tsx index 66f30a35..27f5660c 100644 --- a/explorer/src/pages/Issuer/index.tsx +++ b/explorer/src/pages/Issuer/index.tsx @@ -16,7 +16,7 @@ export const Issuer: React.FC = () => { const { isDarkMode } = useTernaryDarkMode(); const { name, description, CTALink, CTATitle, logo, logoDark, keywords, address, attestationDefinitions } = - issuersData.find((issuer) => issuer.address === id) || {}; + issuersData.find((issuer) => issuer.address === id) || {}; const IssuerLogo = isDarkMode && logoDark ? logoDark : logo;