From cbe1af6f633bcdbc3927943400ad638760d2bc97 Mon Sep 17 00:00:00 2001 From: GleidsonDaniel Date: Wed, 26 Jan 2022 11:00:21 -0300 Subject: [PATCH] chore: add as string to fix type --- app/views/InviteUsersView/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/InviteUsersView/index.tsx b/app/views/InviteUsersView/index.tsx index aa2e8ef3d..51838f27a 100644 --- a/app/views/InviteUsersView/index.tsx +++ b/app/views/InviteUsersView/index.tsx @@ -121,7 +121,7 @@ class InviteUsersView extends React.Component { } const mapStateToProps = (state: IApplicationState) => ({ - timeDateFormat: state.settings.Message_TimeAndDateFormat, + timeDateFormat: state.settings.Message_TimeAndDateFormat as string, invite: state.inviteLinks.invite });