Skip to content

Commit

Permalink
Merge branch 'develop' into feature/network-selection-left-overs
Browse files Browse the repository at this point in the history
  • Loading branch information
banklesss authored Aug 2, 2024
2 parents d57c48b + 4840ee6 commit 993501f
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 9 deletions.
1 change: 0 additions & 1 deletion .husky/.gitignore

This file was deleted.

5 changes: 0 additions & 5 deletions .husky/pre-commit

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import WebView from 'react-native-webview'
import {WebViewNavigation, WebViewNavigationEvent} from 'react-native-webview/lib/WebViewTypes'

import {Icon, Spacer} from '../../../../components'
import {isDev} from '../../../../kernel/env'
import {useSelectedWallet} from '../../../WalletManager/common/hooks/useSelectedWallet'
import {TabItem, useBrowser} from '../../common/BrowserProvider'
import {getDomainFromUrl} from '../../common/helpers'
Expand Down Expand Up @@ -109,6 +110,7 @@ export const WebViewItem = ({tab, index}: Props) => {
{!tabsOpen && isTabActive && <BrowserToolbar uri={tab.url} />}

<WebView
webviewDebuggingEnabled={isDev}
originWhitelist={['*']}
ref={webViewRef}
androidLayerType="hardware"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ const useStyles = () => {
dAppLogo: {
width: 40,
height: 40,
resizeMode: 'contain',
contentFit: 'contain',
},
dAppLogoDialog: {
width: 48,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,6 @@ const useStyles = () => {
tokenLogo: {
width: 32,
height: 32,
resizeMode: 'cover',
...atoms.rounded_sm,
},
textBody: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {StyleSheet, View} from 'react-native'

import {TabPanel, TabPanels} from '../../../../../components/Tabs'
import {usePortfolioTokenDetailContext} from '../../../common/PortfolioTokenDetailContext'
import {Overview} from './Overview'
import {Overview} from './Overview/Overview'
import {Performance} from './Performance'

export const PortfolioTokenInfo = () => {
Expand Down

0 comments on commit 993501f

Please sign in to comment.