Skip to content

Commit b928e61

Browse files
authored
chore: enable USE_ADVANCED_RECEIVE by default (#1423)
Also renames it to better reflect the feature
1 parent 03e54bc commit b928e61

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

apps/browser-extension-wallet/.env.defaults

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ USE_MULTI_DELEGATION_STAKING_GRID_VIEW=true
2828
USE_MULTI_DELEGATION_STAKING_FILTERS=false
2929
USE_ROS_STAKING_COLUMN=false
3030
USE_FOOR_TOPUP=true
31-
USE_ADVANCED_RECEIVED=false
31+
USE_ADVANCED_RECEIVE=true
3232

3333
USE_POSTHOG_ANALYTICS_FOR_OPTED_OUT=false
3434
USE_MULTI_WALLET=true

apps/browser-extension-wallet/src/views/browser-view/components/QRInfoWalletDrawer/QRInfoWalletDrawer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ type WalletData = {
3131
};
3232
};
3333

34-
const useAdvancedReceived = process.env.USE_ADVANCED_RECEIVED === 'true';
34+
const useAdvancedReceived = process.env.USE_ADVANCED_RECEIVE === 'true';
3535

3636
/**
3737
* Gets whether the given address has a transaction history.

apps/browser-extension-wallet/src/views/browser-view/components/TransactionCTAsBox/TransactionCTAsBox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import { InfoCircleOutlined } from '@ant-design/icons';
1919
import { useLocalStorage } from '@hooks';
2020
import { Tooltip } from 'antd';
2121

22-
const useAdvancedReceived = process.env.USE_ADVANCED_RECEIVED === 'true';
22+
const useAdvancedReceived = process.env.USE_ADVANCED_RECEIVE === 'true';
2323

2424
export const TransactionCTAsBox = (): React.ReactElement => {
2525
const { isSharedWallet } = useWalletStore();

0 commit comments

Comments
 (0)