From 18b2f3388d47f522ff02f1b500c778de23dbbf83 Mon Sep 17 00:00:00 2001 From: AlexAlexandre Date: Wed, 15 Dec 2021 00:58:11 -0300 Subject: [PATCH] minor tweak --- app/views/RoomView/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/RoomView/index.tsx b/app/views/RoomView/index.tsx index 870338cfc..8d73ef484 100644 --- a/app/views/RoomView/index.tsx +++ b/app/views/RoomView/index.tsx @@ -985,7 +985,7 @@ class RoomView extends React.Component { navToRoom = async (message: { rid: string; id: string }) => { const { navigation, isMasterDetail } = this.props; - const roomInfo: any = await getRoomInfo(message.rid); + const roomInfo = (await getRoomInfo(message.rid)) as IRoom; return goRoom({ item: roomInfo, isMasterDetail,