Skip to content

Update copy text #38

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/widget-react/src/pages/bridge/BridgeFields.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ const BridgeFields = () => {
))}
{routeErrorInfo && <FormHelp level="info">{routeErrorInfo}</FormHelp>}
{isMaxAmount && (
<FormHelp level="warning">Make sure to leave enough for fees</FormHelp>
<FormHelp level="warning">Make sure to leave enough funds to cover fees</FormHelp>
)}
{route?.warning && <FormHelp level="warning">{route.warning.message}</FormHelp>}
{route?.extra_warnings?.map((warning) => (
Expand Down
4 changes: 2 additions & 2 deletions packages/widget-react/src/pages/bridge/BridgeHistory.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const BridgeHistory = () => {
const filteredHistory = showAll ? allHistory : myHistory

return (
<Page title="Bridge/Swap history">
<Page title="Bridge/Swap activity">
<div className={styles.list}>
{allHistory.length > 0 && allHistory.length !== myHistory.length && (
<header className={styles.header}>
Expand All @@ -38,7 +38,7 @@ const BridgeHistory = () => {
)}

{filteredHistory.length === 0 ? (
<Status>No bridge/swap history</Status>
<Status>No bridge/swap activity</Status>
) : (
filteredHistory.map((tx, index) => (
<div className={styles.item} key={index}>
Expand Down
2 changes: 1 addition & 1 deletion packages/widget-react/src/pages/bridge/data/tx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ export function useBridgeTx(tx: TxJson) {
createElement(
Link,
{ to: "/bridge/history", onClick: hideNotification },
"the history page",
"the activity page",
),
" for transaction status",
),
Expand Down
2 changes: 1 addition & 1 deletion packages/widget-react/src/pages/wallet/tabs/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const Home = () => {
</Tabs.Trigger>

<Tabs.Trigger className={styles.tab} value="/activity">
History
Activity
</Tabs.Trigger>
</Tabs.List>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export const SendFields = () => {
<FormHelp.Stack>
{BigNumber(quantity).gt(0) &&
BigNumber(quantity).isEqualTo(toQuantity(balance, decimals)) && (
<FormHelp level="warning">Make sure to leave enough for fees</FormHelp>
<FormHelp level="warning">Make sure to leave enough funds to cover fees</FormHelp>
)}

{!memo && (
Expand Down