aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/ducks
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/ducks')
-rw-r--r--ui/app/ducks/send.duck.js8
-rw-r--r--ui/app/ducks/tests/send-duck.test.js16
2 files changed, 0 insertions, 24 deletions
diff --git a/ui/app/ducks/send.duck.js b/ui/app/ducks/send.duck.js
index 758916d48..4d212bd03 100644
--- a/ui/app/ducks/send.duck.js
+++ b/ui/app/ducks/send.duck.js
@@ -62,14 +62,6 @@ export default function reducer ({ send: sendState = initState }, action = {}) {
}
// Action Creators
-export function openFromDropdown () {
- return { type: OPEN_FROM_DROPDOWN }
-}
-
-export function closeFromDropdown () {
- return { type: CLOSE_FROM_DROPDOWN }
-}
-
export function openToDropdown () {
return { type: OPEN_TO_DROPDOWN }
}
diff --git a/ui/app/ducks/tests/send-duck.test.js b/ui/app/ducks/tests/send-duck.test.js
index 196fe226c..ffd8bfb4b 100644
--- a/ui/app/ducks/tests/send-duck.test.js
+++ b/ui/app/ducks/tests/send-duck.test.js
@@ -1,8 +1,6 @@
import assert from 'assert'
import SendReducer, {
- openFromDropdown,
- closeFromDropdown,
openToDropdown,
closeToDropdown,
updateSendErrors,
@@ -140,20 +138,6 @@ describe('Send Duck', () => {
})
})
- describe('openFromDropdown', () => {
- assert.deepEqual(
- openFromDropdown(),
- { type: OPEN_FROM_DROPDOWN }
- )
- })
-
- describe('closeFromDropdown', () => {
- assert.deepEqual(
- closeFromDropdown(),
- { type: CLOSE_FROM_DROPDOWN }
- )
- })
-
describe('openToDropdown', () => {
assert.deepEqual(
openToDropdown(),