Skip to content

Commit

Permalink
fix: broken text style in firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
matiasbenary committed Aug 30, 2024
1 parent 3484de2 commit 05c255d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/wallet-utilities/KeyTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,14 +87,14 @@ const KeyTable: React.FC = () => {
</Table.Cell>
<Table.Cell>
<Tooltip content={data.access_key.permission.FunctionCall?.receiver_id ?? 'N/A'}>
<Text style={{ minWidth: '5rem', whiteSpace:"pre-wrap" }} clampLines={1}>
<Text style={{ minWidth: '5rem', whiteSpace: 'pre-wrap' }} clampLines={1}>
{data.access_key.permission.FunctionCall?.receiver_id ?? 'N/A'}
</Text>
</Tooltip>
</Table.Cell>
<Table.Cell>
<Tooltip content={data.public_key}>
<Text style={{ minWidth: '5rem', whiteSpace:"pre-wrap" }} clampLines={1}>
<Text style={{ minWidth: '5rem', whiteSpace: 'pre-wrap' }} clampLines={1}>
{data.public_key}
</Text>
</Tooltip>
Expand Down

0 comments on commit 05c255d

Please sign in to comment.