Skip to content

Commit 9ec39b9

Browse files
committed
Chore: fixes after rebase
1 parent 5742b1f commit 9ec39b9

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

src/components/v5/tmpDebug/context/TmpContextProvider.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import React, { type PropsWithChildren, useState, useMemo } from 'react';
22
import { useNavigate } from 'react-router-dom';
33

4-
import { useUserTransactionContext } from '~context/UserTransactionContext/UserTransactionContext.ts';
54
import { type TransactionType } from '~redux/immutable/Transaction.ts';
65
import { TX_SEARCH_PARAM } from '~routes';
76
import InputBase from '~v5/common/Fields/InputBase/InputBase.tsx';
@@ -13,7 +12,8 @@ export const TmpContextProvider: React.FC<PropsWithChildren> = ({
1312
}) => {
1413
const [annotation, setAnnotation] = useState('');
1514

16-
const { transactionAndMessageGroups } = useUserTransactionContext();
15+
// const { transactionAndMessageGroups } = useUserTransactionContext();
16+
const transactionAndMessageGroups = [];
1717

1818
const navigate = useNavigate();
1919

src/redux/sagas/expenditures/editStreamingPayment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ function* editStreamingPaymentAction({
101101

102102
yield takeFrom(txChannel, ActionTypes.TRANSACTION_CREATED);
103103

104-
yield initiateTransaction({ id: meta.id });
104+
yield initiateTransaction(meta.id);
105105

106106
const {
107107
type,

src/redux/sagas/motions/expenditures/editStreamingPaymentMotion.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ function* editStreamingPaymentMotion({
174174
yield takeFrom(annotateMotion.channel, ActionTypes.TRANSACTION_CREATED);
175175
}
176176

177-
yield initiateTransaction({ id: createMotion.id });
177+
yield initiateTransaction(createMotion.id);
178178

179179
const {
180180
type,

src/redux/sagas/utils/editStreamingPaymentMulticall.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,8 @@ export const getEditStreamingPaymentMulticallData = async ({
117117

118118
if (hasAmountChanged || hasIntervalChanged) {
119119
multicallData.push(
120+
// @TODO: Fix this
121+
// @ts-ignore
120122
streamingPaymentsClient.interface.encodeFunctionData('setTokenAmount', [
121123
fundingPermissionDomainId,
122124
fundingChildSkillIndex,

0 commit comments

Comments
 (0)