Update safety number change warning dialog
This commit is contained in:
parent
e87a0103cc
commit
5b83485c89
38 changed files with 1221 additions and 425 deletions
|
@ -30,6 +30,11 @@ import {
|
|||
NetworkStateType,
|
||||
reducer as network,
|
||||
} from './ducks/network';
|
||||
import {
|
||||
reducer as safetyNumber,
|
||||
SafetyNumberActionTypes,
|
||||
SafetyNumberStateType,
|
||||
} from './ducks/safetyNumber';
|
||||
import {
|
||||
reducer as search,
|
||||
SEARCH_TYPES as SearchActionType,
|
||||
|
@ -54,6 +59,7 @@ export type StateType = {
|
|||
expiration: ExpirationStateType;
|
||||
items: ItemsStateType;
|
||||
network: NetworkStateType;
|
||||
safetyNumber: SafetyNumberStateType;
|
||||
search: SearchStateType;
|
||||
stickers: StickersStateType;
|
||||
updates: UpdatesStateType;
|
||||
|
@ -67,6 +73,7 @@ export type ActionsType =
|
|||
| ConversationActionType
|
||||
| ItemsActionType
|
||||
| NetworkActionType
|
||||
| SafetyNumberActionTypes
|
||||
| StickersActionType
|
||||
| SearchActionType
|
||||
| UpdatesActionType;
|
||||
|
@ -78,6 +85,7 @@ export const reducers = {
|
|||
expiration,
|
||||
items,
|
||||
network,
|
||||
safetyNumber,
|
||||
search,
|
||||
stickers,
|
||||
updates,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue