fix problem with difference between IRoom and IRoomModel

This commit is contained in:
AlexAlexandre 2021-12-17 22:32:44 -03:00
parent 8192b391ea
commit 6a9f878d28
2 changed files with 3 additions and 3 deletions

View File

@ -84,7 +84,7 @@ export type ChatsStackParamList = {
};
AutoTranslateView: {
rid: string;
room: IRoom;
room: TRoomModel;
};
DirectoryView: undefined;
NotificationPrefView: {

View File

@ -20,7 +20,7 @@ import SafeAreaView from '../../containers/SafeAreaView';
import getThreadName from '../../lib/methods/getThreadName';
import styles from './styles';
import { ChatsStackParamList } from '../../stacks/types';
import { IRoom, RoomType } from '../../definitions/IRoom';
import { IRoom, RoomType, TRoomModel } from '../../definitions/IRoom';
interface IMessagesViewProps {
user: {
@ -78,7 +78,7 @@ interface IParams {
name?: string;
fname?: string;
prid?: string;
room: IRoom;
room: TRoomModel;
jumpToMessageId?: string;
jumpToThreadId?: string;
roomUserId?: string;