jiti-meet/react/features/feedback
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 Change dialog button property keys 2019-03-07 01:09:03 +01:00
actionTypes.js chore: use strings as action types 2019-03-21 14:47:55 +01:00
actions.js ref(notifications): convert Thank You message to a notification 2018-02-12 17:53:29 -06:00
index.js feat(api): expose a way to submit feedback 2018-01-19 14:27:44 -08:00
middleware.js feat(api): expose a way to submit feedback 2018-01-19 14:27:44 -08:00
reducer.js feat(feedback): convert to react and redux (#1833) 2017-08-07 11:20:44 -05:00