about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/reducers/cards.js
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2018-10-29 14:56:53 +0100
committerThibG <thib@sitedethib.com>2018-10-30 17:51:06 +0100
commitb21615e9579a6f33ed1cdf6fc37fc8a1ff24a0d5 (patch)
tree6bbfa982ed1bff2acae14f202c7d10df3a749d65 /app/javascript/flavours/glitch/reducers/cards.js
parentac9780b8449527a6a7ab5e2031eeb37f7f2291e7 (diff)
[Glitch] Fix dimensions of preview cards, fix crash in web UI, fix warning
Port 9c38c5daa3d7298f02c763a84a74680dcc89dac2 to glitch-soc
Diffstat (limited to 'app/javascript/flavours/glitch/reducers/cards.js')
-rw-r--r--app/javascript/flavours/glitch/reducers/cards.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/app/javascript/flavours/glitch/reducers/cards.js b/app/javascript/flavours/glitch/reducers/cards.js
deleted file mode 100644
index 92ecfd086..000000000
--- a/app/javascript/flavours/glitch/reducers/cards.js
+++ /dev/null
@@ -1,14 +0,0 @@
-import { STATUS_CARD_FETCH_SUCCESS } from 'flavours/glitch/actions/cards';
-
-import { Map as ImmutableMap, fromJS } from 'immutable';
-
-const initialState = ImmutableMap();
-
-export default function cards(state = initialState, action) {
-  switch(action.type) {
-  case STATUS_CARD_FETCH_SUCCESS:
-    return state.set(action.id, fromJS(action.card));
-  default:
-    return state;
-  }
-};