diff --git a/src/routes/routes.js b/src/routes/routes.js index 3f167833..ed521627 100644 --- a/src/routes/routes.js +++ b/src/routes/routes.js @@ -3,4 +3,3 @@ export const SAFE_PARAM_ADDRESS = 'address' export const SAFELIST_ADDRESS = '/safes' export const OPEN_ADDRESS = '/open' export const WELCOME_ADDRESS = '/welcome' -export const TXS_ADDRESS = '/txs' diff --git a/src/routes/safe/component/Withdrawn/index.jsx b/src/routes/safe/component/Withdrawn/index.jsx index 282a488c..546f04a8 100644 --- a/src/routes/safe/component/Withdrawn/index.jsx +++ b/src/routes/safe/component/Withdrawn/index.jsx @@ -2,7 +2,7 @@ import * as React from 'react' import { connect } from 'react-redux' import Stepper from '~/components/Stepper' -import { TXS_ADDRESS } from '~/routes/routes' +import { SAFELIST_ADDRESS } from '~/routes/routes' import selector, { type SelectorProps } from './selector' import withdrawn from './withdrawn' import WithdrawnForm from './WithdrawnForm' @@ -21,7 +21,7 @@ type State = { done: boolean, } -export const SEE_TXS_BUTTON_TEXT = 'SEE TXS' +export const SEE_TXS_BUTTON_TEXT = 'DONE' class Withdrawn extends React.Component { state = { @@ -41,14 +41,14 @@ class Withdrawn extends React.Component { } render() { - const { dailyLimit } = this.props + const { dailyLimit, safeAddress } = this.props const { done } = this.state const steps = getSteps() return (