From 7018bd8285004cb4ec08bd7adfc0899fbf55ae02 Mon Sep 17 00:00:00 2001 From: Hongbo Wu Date: Tue, 4 Jul 2023 16:44:04 +0800 Subject: [PATCH] fix: readwise button not clickable on integrations page We have set the height of the container to 800px which is too small. * set height of the container to 100% * remove unused component --- packages/web/pages/settings/integrations.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/web/pages/settings/integrations.tsx b/packages/web/pages/settings/integrations.tsx index cf5dd805b..7d74f6e98 100644 --- a/packages/web/pages/settings/integrations.tsx +++ b/packages/web/pages/settings/integrations.tsx @@ -232,7 +232,7 @@ export default function Integrations(): JSX.Element { css={{ width: '80%', margin: '0 auto', - height: '800px', + height: '100%', '@smDown': { width: '100%', }, @@ -307,7 +307,6 @@ export default function Integrations(): JSX.Element { ) })} - )