Skip to content

Commit 5c23171

Browse files
wip
1 parent 741cd13 commit 5c23171

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

test/integration/confirmations/signatures/permit-batch.test.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ describe('Permit Batch Signature Tests', () => {
100100

101101
const simulationDetails = [
102102
'Estimated changes',
103-
"You're removing the spender permission to spend this many tokens from your account.",
103+
"You're giving the spender permission to spend this many tokens from your account.",
104104
'Spending cap',
105105
'0xA0b86...6eB48',
106106
'Unlimited',

test/integration/confirmations/signatures/permit-single.test.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ describe('Permit Single Signature Tests', () => {
9898
);
9999
const simulationDetails = [
100100
'Estimated changes',
101-
"You're removing the spender permission to spend this many tokens from your account.",
101+
"You're giving the spender permission to spend this many tokens from your account.",
102102
'Spending cap',
103103
'0xA0b86...6eB48',
104104
'Unlimited',

test/integration/confirmations/signatures/permit.test.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ describe('Permit Confirmation', () => {
235235
expect(simulationSection).toBeInTheDocument();
236236
expect(simulationSection).toHaveTextContent('Estimated changes');
237237
expect(simulationSection).toHaveTextContent(
238-
"You're removing the spender permission to spend this many tokens from your account.",
238+
"You're giving the spender permission to spend this many tokens from your account.",
239239
);
240240
expect(simulationSection).toHaveTextContent('Spending cap');
241241
expect(simulationSection).toHaveTextContent('0xCcCCc...ccccC');

ui/pages/confirmations/components/confirm/info/typed-sign/__snapshots__/typed-sign.test.tsx.snap

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ exports[`TypedSignInfo correctly renders permit sign type 1`] = `
4545
class="mm-box mm-text mm-text--body-md mm-box--color-inherit"
4646
style="white-space: pre-wrap;"
4747
>
48-
You're removing the spender permission to spend this many tokens from your account.
48+
You're giving the spender permission to spend this many tokens from your account.
4949
</p>
5050
</div>
5151
</div>
@@ -420,7 +420,7 @@ exports[`TypedSignInfo correctly renders permit sign type with no deadline 1`] =
420420
class="mm-box mm-text mm-text--body-md mm-box--color-inherit"
421421
style="white-space: pre-wrap;"
422422
>
423-
You're removing the spender permission to spend this many tokens from your account.
423+
You're giving the spender permission to spend this many tokens from your account.
424424
</p>
425425
</div>
426426
</div>

ui/pages/confirmations/components/confirm/info/typed-sign/typed-sign-v4-simulation/permit-simulation/__snapshots__/permit-simulation.test.tsx.snap

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ exports[`PermitSimulation renders component correctly 1`] = `
4545
class="mm-box mm-text mm-text--body-md mm-box--color-inherit"
4646
style="white-space: pre-wrap;"
4747
>
48-
You're removing the spender permission to spend this many tokens from your account.
48+
You're giving the spender permission to spend this many tokens from your account.
4949
</p>
5050
</div>
5151
</div>

ui/pages/confirmations/components/confirm/info/typed-sign/typed-sign-v4-simulation/typed-sign-v4-simulation.test.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ describe('PermitSimulation', () => {
6868
expect(await findByText('Estimated changes')).toBeInTheDocument();
6969
expect(
7070
await findByText(
71-
"You're removing the spender permission to spend this many tokens from your account.",
71+
"You're giving the spender permission to spend this many tokens from your account.",
7272
),
7373
).toBeInTheDocument();
7474
});
@@ -103,7 +103,7 @@ describe('PermitSimulation', () => {
103103
expect(await findByText('Estimated changes')).toBeInTheDocument();
104104
expect(
105105
await findByText(
106-
"You're removing the spender permission to spend this many tokens from your account.",
106+
"You're giving the spender permission to spend this many tokens from your account.",
107107
),
108108
).toBeInTheDocument();
109109
});

ui/pages/confirmations/confirm/__snapshots__/confirm.test.tsx.snap

+3-3
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ exports[`Confirm should match snapshot for signature - typed sign - V4 - PermitB
395395
class="mm-box mm-text mm-text--body-md mm-box--color-inherit"
396396
style="white-space: pre-wrap;"
397397
>
398-
You're removing the spender permission to spend this many tokens from your account.
398+
You're giving the spender permission to spend this many tokens from your account.
399399
</p>
400400
</div>
401401
</div>
@@ -866,7 +866,7 @@ exports[`Confirm should match snapshot for signature - typed sign - V4 - PermitS
866866
class="mm-box mm-text mm-text--body-md mm-box--color-inherit"
867867
style="white-space: pre-wrap;"
868868
>
869-
You're removing the spender permission to spend this many tokens from your account.
869+
You're giving the spender permission to spend this many tokens from your account.
870870
</p>
871871
</div>
872872
</div>
@@ -2349,7 +2349,7 @@ exports[`Confirm should match snapshot for signature - typed sign - permit 1`] =
23492349
class="mm-box mm-text mm-text--body-md mm-box--color-inherit"
23502350
style="white-space: pre-wrap;"
23512351
>
2352-
You're removing the spender permission to spend this many tokens from your account.
2352+
You're giving the spender permission to spend this many tokens from your account.
23532353
</p>
23542354
</div>
23552355
</div>

0 commit comments

Comments
 (0)