Skip to content

Commit

Permalink
fix(company wallet): update tx logo path (#845)
Browse files Browse the repository at this point in the history
  • Loading branch information
manojava-gk authored May 29, 2024
1 parent b20d0a2 commit 383b835
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

## Unreleased

## Unreleased

### Bugfix

- Overlay
- Fix consistency issue in overlays where form input is used
- Company Wallet
- Use appropriate path to display logo on cards

### Feature

Expand Down
3 changes: 2 additions & 1 deletion src/components/pages/CompanyWallet/RuleCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import dayjs from 'dayjs'
import { useTranslation } from 'react-i18next'
import { Box, Grid } from '@mui/material'
import SettingsBackupRestoreIcon from '@mui/icons-material/SettingsBackupRestore'
import { getAssetBase } from 'services/EnvironmentService'

type Hash<T> = Record<string, T>

Expand Down Expand Up @@ -130,7 +131,7 @@ export default function RuleCard({
{getStatus(item?.status)}
</Typography>
<img
src="/logo_tractus-x.svg"
src={`${getAssetBase()}/images/logos/logo_tractus-x.svg`}
alt="tractus x logo"
style={{
width: 40,
Expand Down

0 comments on commit 383b835

Please sign in to comment.