diff --git a/app/actions/createChannel.ts b/app/actions/createChannel.ts index d98fd8202..8f5721b65 100644 --- a/app/actions/createChannel.ts +++ b/app/actions/createChannel.ts @@ -17,7 +17,7 @@ interface ICreateChannelFailure extends Action { isTeam: boolean; } -export type TActionCreateApp = ICreateChannelRequest & ICreateChannelSuccess & ICreateChannelFailure; +export type TActionCreateChannel = ICreateChannelRequest & ICreateChannelSuccess & ICreateChannelFailure; export function createChannelRequest(data: any): ICreateChannelRequest { return { diff --git a/app/definitions/redux/index.ts b/app/definitions/redux/index.ts index da262bf52..0be072d9c 100644 --- a/app/definitions/redux/index.ts +++ b/app/definitions/redux/index.ts @@ -1,7 +1,7 @@ import { TActionSelectedUsers } from '../../actions/selectedUsers'; import { TActionActiveUsers } from '../../actions/activeUsers'; import { TActionApp } from '../../actions/app'; -import { TActionCreateApp } from '../../actions/createChannel'; +import { TActionCreateChannel } from '../../actions/createChannel'; // REDUCERS import { IActiveUsers } from '../../reducers/activeUsers'; import { ISelectedUsers } from '../../reducers/selectedUsers'; @@ -33,4 +33,4 @@ export interface IApplicationState { roles: any; } -export type TApplicationActions = TActionActiveUsers & TActionSelectedUsers & TActionApp & TActionCreateApp; +export type TApplicationActions = TActionActiveUsers & TActionSelectedUsers & TActionApp & TActionCreateChannel;