aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send_/send-content/send-from-row
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/send_/send-content/send-from-row')
-rw-r--r--ui/app/components/send_/send-content/send-from-row/send-from-row.container.js2
-rw-r--r--ui/app/components/send_/send-content/send-from-row/tests/send-from-row-container.test.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/send_/send-content/send-from-row/send-from-row.container.js b/ui/app/components/send_/send-content/send-from-row/send-from-row.container.js
index 377aead0a..402b744e4 100644
--- a/ui/app/components/send_/send-content/send-from-row/send-from-row.container.js
+++ b/ui/app/components/send_/send-content/send-from-row/send-from-row.container.js
@@ -16,7 +16,7 @@ import {
import {
closeFromDropdown,
openFromDropdown,
-} from '../../../../ducks/send'
+} from '../../../../ducks/send.duck'
import SendFromRow from './send-from-row.component'
export default connect(mapStateToProps, mapDispatchToProps)(SendFromRow)
diff --git a/ui/app/components/send_/send-content/send-from-row/tests/send-from-row-container.test.js b/ui/app/components/send_/send-content/send-from-row/tests/send-from-row-container.test.js
index 70ab963ab..785b3d3ef 100644
--- a/ui/app/components/send_/send-content/send-from-row/tests/send-from-row-container.test.js
+++ b/ui/app/components/send_/send-content/send-from-row/tests/send-from-row-container.test.js
@@ -31,7 +31,7 @@ proxyquire('../send-from-row.container.js', {
'./send-from-row.selectors.js': { getFromDropdownOpen: (s) => `mockFromDropdownOpen:${s}` },
'../../send.utils.js': { calcTokenBalance: (a, b) => a + b },
'../../../../actions': actionSpies,
- '../../../../ducks/send': duckActionSpies,
+ '../../../../ducks/send.duck': duckActionSpies,
})
describe('send-from-row container', () => {