Skip to content

Commit

Permalink
Fixes text overflow in table
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellemaxwell committed Jan 9, 2024
1 parent 1127ba1 commit 3ac0156
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const TrisaDetail: React.FC<TrisaDetailProps> = ({ data, type }) => {
<Heading as={'h1'} fontSize={19} pt={4} mb={2}>
{t`Your TRISA ${type} Details`}
</Heading>
<Stack fontSize={18} pb={4}>
<Stack fontSize={18} pb={4} overflow={'auto'}>
<Table
sx={{
thead: { fontWeight: 'bold' },
Expand Down

0 comments on commit 3ac0156

Please sign in to comment.