Skip to content

Commit

Permalink
copies
Browse files Browse the repository at this point in the history
  • Loading branch information
albertfolch-redeemeum committed Jan 16, 2025
1 parent d84a1d9 commit 598665b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ function CommitNonModal({
if (!address && forcedAccount) {
return (
<>
<p>Please connect your wallet</p>
<p>Please connect your account</p>
{forcedAccount && <p>(expected account: {forcedAccount})</p>}
</>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ function RedeemNonModal({
if (!address) {
return (
<>
<p>Please connect your wallet</p>
<p>Please connect your account</p>
{forcedAccount && <p>(expected account: {forcedAccount})</p>}
</>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export const RequestShipmentModal = ({
if (!address) {
return (
<>
<p>Please connect your wallet</p>
<p>Please connect your account</p>
{forcedAccount && <p>(expected account: {forcedAccount})</p>}
</>
);
Expand Down
6 changes: 3 additions & 3 deletions packages/react-kit/src/components/widgets/finance/Finance.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ export default function Finance({
tooltip={
address
? "This action is restricted to only the assistant wallet"
: "Please connect your wallet"
: "Please connect your account"
}
onClick={() => {
showModal(
Expand All @@ -371,7 +371,7 @@ export default function Finance({
variant="accentInverted"
size="small"
disabled={!address}
tooltip={"Please connect your wallet"}
tooltip={"Please connect your account"}
onClick={() => {
showModal(
"FINANCE_DEPOSIT_MODAL",
Expand Down Expand Up @@ -452,7 +452,7 @@ export default function Finance({
}, [pageCount, pageIndex]);

if (!address) {
return <p style={{ textAlign: "center" }}>Please connect your wallet</p>;
return <p style={{ textAlign: "center" }}>Please connect your account</p>;
}

if (!isFundsInitialized || isLoadingSellerData || isLoadingExchangesTokens) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ function WithSellerData(WrappedComponent: React.ComponentType<Props>) {
}

if (!address) {
return <p style={{ textAlign: "center" }}>Please connect your wallet</p>;
return <p style={{ textAlign: "center" }}>Please connect your account</p>;
}

if (!sellerIdToUse) {
Expand Down

0 comments on commit 598665b

Please sign in to comment.