jiti-meet/react/features/device-selection
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 ref(device-selection): update preview tracks on component update 2018-11-21 08:08:45 -08:00
actionTypes.js chore: use strings as action types 2019-03-21 14:47:55 +01:00
actions.js feat(welcome-page): be able to open settings dialog (#3327) 2018-08-06 10:24:59 -05:00
functions.js feat(permissions): adjust to changes in permissions checking 2018-09-21 11:35:16 +02:00
index.js Refactor settings modal (#3121) 2018-06-20 13:19:53 -07:00
middleware.js feat(device_selection): Implement popup 2017-06-07 09:23:40 -05:00
reducer.js feat(device_selection): Implement popup 2017-06-07 09:23:40 -05:00