jiti-meet/react/features/recent-list
Saúl Ibarra Corretgé 0e92e73789 chore: use strings as action types
Using anything non-serializable for action types is discouraged:
https://redux.js.org/faq/actions#actions

In fact, this is the Flow definition for dispatching actions:

declare export type DispatchAPI<A> = (action: A) => A;
declare export type Dispatch<A: { type: $Subtype<string> }> = DispatchAPI<A>;

Note how the `type` field is defined as a subtype of string, which Symbol isn’t.
2019-03-21 14:47:55 +01:00
..
components feat(welcome-page): Redesign. (#3559) 2018-10-22 13:49:18 -05:00
actionTypes.js chore: use strings as action types 2019-03-21 14:47:55 +01:00
actions.js [RN] Add swipe to delete feature 2018-10-09 13:35:06 +02:00
functions.native.js feat(welcome-page): Redesign. (#3559) 2018-10-22 13:49:18 -05:00
functions.web.js feat(welcome-page): Redesign. (#3559) 2018-10-22 13:49:18 -05:00
index.js Improve persistency layer 2018-02-02 15:13:26 -06:00
middleware.js ref(RecentList): Improvements after review. 2018-08-03 11:25:03 -05:00
reducer.js [RN] Add swipe to delete feature 2018-10-09 13:35:06 +02:00