jiti-meet/react/features/mobile
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
..
audio-mode audio-mode: don't change the mode unless there is no active conference 2019-02-14 10:20:45 +01:00
background chore: use strings as action types 2019-03-21 14:47:55 +01:00
call-integration chore: use strings as action types 2019-03-21 14:47:55 +01:00
external-api chore: use strings as action types 2019-03-21 14:47:55 +01:00
full-screen chore: use strings as action types 2019-03-21 14:47:55 +01:00
incoming-call chore: use strings as action types 2019-03-21 14:47:55 +01:00
network-activity chore: use strings as action types 2019-03-21 14:47:55 +01:00
permissions Reorganize calendar access request flow 2018-03-23 07:53:36 +01:00
picture-in-picture chore: use strings as action types 2019-03-21 14:47:55 +01:00
proximity ref(mobile/proximity): convert middleware to a state listener 2018-05-30 16:29:27 +02:00
wake-lock ref(mobile/wake-lock): convert middleware to a state listener 2018-05-30 16:29:27 +02:00