Skip to content

Commit 40af59a

Browse files
committed
fixup! fixup! dApp: rework additional action component props
1 parent 0533e22 commit 40af59a

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

raiden-dapp/src/components/channels/ChannelDepositAndTransferAction.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import { Component, Mixins } from 'vue-property-decorator';
55
import ActionMixin from '@/mixins/action-mixin';
66
import type { ActionProgressStep } from '@/model/types';
77
8-
interface FixedRunOptions {
8+
type FixedRunOptions = {
99
transferTokenAmount: BigNumber;
1010
paymentIdentifier: BigNumber;
11-
}
11+
};
1212
1313
const cleanDepositStep: ActionProgressStep = {
1414
title: 'channel-deposit-and-transfer-action.steps.deposit.title',

raiden-dapp/src/components/channels/ChannelOpenAndTransferAction.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ import { EventTypes } from 'raiden-ts';
88
import ActionMixin from '@/mixins/action-mixin';
99
import type { ActionProgressStep } from '@/model/types';
1010
11-
interface FixedRunOptions {
11+
type FixedRunOptions = {
1212
transferTokenAmount: BigNumber;
1313
paymentIdentifier: BigNumber;
14-
}
14+
};
1515
1616
const cleanOpenStep: ActionProgressStep = {
1717
title: 'channel-open-and-transfer-action.steps.open.title',

raiden-dapp/src/components/transfer/DirectTransferAction.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import { Component, Mixins } from 'vue-property-decorator';
55
import ActionMixin from '@/mixins/action-mixin';
66
import type { ActionProgressStep } from '@/model/types';
77
8-
interface FixedRunOptions {
8+
type FixedRunOptions = {
99
transferTokenAmount: BigNumber;
1010
paymentIdentifier: BigNumber;
11-
}
11+
};
1212
1313
const cleanTransferStep: ActionProgressStep = {
1414
title: 'direct-transfer-action.steps.transfer.title',

raiden-dapp/src/components/transfer/MediatedTransferAction.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ import type { RaidenPaths } from 'raiden-ts';
77
import ActionMixin from '@/mixins/action-mixin';
88
import type { ActionProgressStep } from '@/model/types';
99
10-
interface FixedRunOptions {
10+
type FixedRunOptions = {
1111
transferTokenAmount: BigNumber;
1212
paymentIdentifier: BigNumber;
1313
route: RaidenPaths[number];
14-
}
14+
};
1515
1616
const cleanTransferStep: ActionProgressStep = {
1717
title: 'mediated-transfer-action.steps.transfer.title',

0 commit comments

Comments
 (0)