Skip to content

Commit

Permalink
fix: text wrap
Browse files Browse the repository at this point in the history
  • Loading branch information
jxom committed Nov 2, 2023
1 parent edc5b22 commit 37ef140
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions src/components/abi/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export { AbiFunctionsAccordion } from './AbiFunctionsAccordion'
export { AbiParametersInputs } from './AbiParametersInputs'
export { DecodedAbiParameters } from './DecodedAbiParameters'
export { DecodedCalldata } from './DecodedCalldata'
Expand Down
1 change: 1 addition & 0 deletions src/components/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export {
AbiFunctionsAccordion,
AbiParametersInputs,
DecodedCalldata,
DecodedAbiParameters,
Expand Down
1 change: 0 additions & 1 deletion src/design-system/components/Text.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ export const TextBase = forwardRef<HTMLDivElement, TextProps>(
style={style}
weight={weight}
width={width}
wrap={wrap}
testId={testId}
>
<Box
Expand Down
12 changes: 6 additions & 6 deletions src/screens/contract-details.tsx
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
import * as Tabs from '@radix-ui/react-tabs'
import type { AbiFunction } from 'abitype'
import { useMemo } from 'react'
import { useParams } from 'react-router'

import type { AbiFunction } from 'abitype'
import {
AbiFunctionsAccordion,
Container,
LabelledContent,
TabsContent,
TabsList,
} from '../components'
import { AbiFunctionsAccordion } from '../components/abi/AbiFunctionsAccordion'
import { Bleed, Box, Stack, Text } from '../design-system'
import { useAutoloadAbi } from '../hooks/useAutoloadAbi'
import { useContracts } from '../hooks/useContracts'
} from '~/components'
import { Bleed, Box, Stack, Text } from '~/design-system'
import { useAutoloadAbi } from '~/hooks/useAutoloadAbi'
import { useContracts } from '~/hooks/useContracts'

export default function ContractDetails() {
const { contractAddress } = useParams()
Expand Down

0 comments on commit 37ef140

Please sign in to comment.