fix team add website overflow bug

This commit is contained in:
Francis Cao 2024-01-29 11:50:36 -08:00
parent 500a0cd261
commit 67edc5c092

View File

@ -51,7 +51,7 @@ export function TeamWebsiteAddForm({
{isLoading && !hasData && <Loading icon="dots" position="center" />}
{!isLoading && !hasData && <Empty />}
{hasData && (
<Form onSubmit={handleSubmit} error={error}>
<Form onSubmit={handleSubmit} error={error} style={{ maxHeight: '70vh', overflow: 'auto' }}>
<WebsitesDataTable userId={user.id} showActions={false}>
<GridColumn name="select" label={formatMessage(labels.selectWebsite)} alignment="end">
{row => (