Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigoncalves committed Mar 28, 2024
1 parent 29fa585 commit a687499
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 22 deletions.
1 change: 1 addition & 0 deletions src/components/icons/NoTransactionsImage.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Svg, { SvgProps, Path, G, Defs, ClipPath } from 'react-native-svg'

import { sharedColors } from 'src/shared/constants'

const NoTransactionsImage = ({
Expand Down
28 changes: 6 additions & 22 deletions src/screens/walletConnect/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,28 +77,12 @@ export const WalletConnectScreen = ({ route }: Props) => {
const { watch, setValue } = methods
const wcUri = watch('wcUri')

// const wc2Sessions: WC2Session[] = sessions.map(session => ({
// name: session.peer.metadata.name,
// url: session.peer.metadata.url,
// key: session.topic,
// wc: session,
// }))
const wc2Sessions: WC2Session[] = [
{
name: 'test',
url: 'test',
key: 'test',
wc: {
peer: {
metadata: {
name: 'test',
url: 'test',
},
},
topic: 'test',
},
},
]
const wc2Sessions: WC2Session[] = sessions.map(session => ({
name: session.peer.metadata.name,
url: session.peer.metadata.url,
key: session.topic,
wc: session,
}))

const handlePaste = async () => {
const clipboardText = await Clipboard.getString()
Expand Down

0 comments on commit a687499

Please sign in to comment.