Skip to content

Commit

Permalink
Change overflow scroll to auto
Browse files Browse the repository at this point in the history
  • Loading branch information
JunichiSugiura committed Jun 11, 2024
1 parent a193b1b commit 41ddbd9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,26 +48,18 @@ const connectors = [
{
target: ETH_TOKEN_ADDRESS,
method: "transfer",
description:
"Lorem Ipsum is simply dummy text of the printing and typesetting industry.",
},
{
target: ETH_TOKEN_ADDRESS,
method: "mint",
description:
"Lorem Ipsum is simply dummy text of the printing and typesetting industry.",
},
{
target: ETH_TOKEN_ADDRESS,
method: "burn",
description:
"Lorem Ipsum is simply dummy text of the printing and typesetting industry.",
},
{
target: ETH_TOKEN_ADDRESS,
method: "allowance",
description:
"Lorem Ipsum is simply dummy text of the printing and typesetting industry.",
},
],
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export function SessionDetails() {
</Text>
</VStack>

<Accordion w="full" allowMultiple overflowY="scroll">
<Accordion w="full" allowMultiple overflowY="auto">
{policies.map((p, i) => (
<AccordionItem
key={p.target + p.method}
Expand Down

0 comments on commit 41ddbd9

Please sign in to comment.