Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tom2drum committed May 25, 2024
1 parent af4ca93 commit 3768152
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions ui/address/contract/ABI/form/ContractMethodForm.pw.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const data: ContractAbiItem = {
{ internalType: 'enum BasicOrderType', name: 'basicOrderType', type: 'uint8' },
{
components: [
{ internalType: 'uint256', name: 'arender', type: 'uint256' },
{ internalType: 'uint256', name: 'amount', type: 'uint256' },
{ internalType: 'address payable', name: 'recipient', type: 'address' },
],
internalType: 'struct AdditionalRecipient[]',
Expand Down Expand Up @@ -75,7 +75,7 @@ const data: ContractAbiItem = {
{ internalType: 'enum ItemType', name: 'itemType', type: 'uint8' },
{ internalType: 'address', name: 'token', type: 'address' },
{ internalType: 'uint256', name: 'identifier', type: 'uint256' },
{ internalType: 'uint256', name: 'arender', type: 'uint256' },
{ internalType: 'uint256', name: 'amount', type: 'uint256' },
{ internalType: 'address payable', name: 'recipient', type: 'address' },
],
internalType: 'struct ReceivedItem',
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 1 addition & 2 deletions ui/shared/Page/PageTitle.pw.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import React from 'react';

import config from 'configs/app';
import { test, expect } from 'playwright/lib';

import DefaultView from './specs/DefaultView';
Expand All @@ -9,7 +8,7 @@ import WithTextAd from './specs/WithTextAd';

test.beforeEach(async({ mockTextAd, mockAssetResponse }) => {
await mockTextAd();
await mockAssetResponse(config.UI.sidebar.logo.default as string, './playwright/mocks/image_s.jpg');
await mockAssetResponse('https://example.com/logo.png', './playwright/mocks/image_s.jpg');
});

test('default view +@mobile', async({ render }) => {
Expand Down
2 changes: 1 addition & 1 deletion ui/shared/chart/ChartWidget.pw.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const props: Props = {
{ date: new Date('2023-02-23'), value: 25136740.887217894 },
],
title: 'Native coin circulating supply',
description: 'Arender of token circulating supply for the period',
description: 'Amount of token circulating supply for the period',
units: 'ETH',
isLoading: false,
isError: false,
Expand Down
2 changes: 1 addition & 1 deletion ui/token/TokenInventory.pw.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import TokenInventory from './TokenInventory';

test('base view +@mobile', async({ render }) => {
const component = await render(
<Box pt={{ base: '134px', lg: 6 }}>
<Box pt={{ base: '134px', lg: 0 }}>
<TokenInventory
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore:
Expand Down

0 comments on commit 3768152

Please sign in to comment.