Settings / Privacy: Remove redundant ";"

This commit is contained in:
Alexander Zinchuk 2021-06-19 00:25:27 +03:00
parent f6a8b0f1e4
commit d82668e72f

View File

@ -117,9 +117,7 @@ const SettingsPrivacyActiveSessions: FC<StateProps & DispatchProps> = ({
return ( return (
<div className="settings-content custom-scroll"> <div className="settings-content custom-scroll">
{currentSession && renderCurrentSession(currentSession)} {currentSession && renderCurrentSession(currentSession)}
{otherSessions && renderOtherSessions(otherSessions)} {otherSessions && renderOtherSessions(otherSessions)}
{otherSessions && ( {otherSessions && (
<ConfirmDialog <ConfirmDialog
isOpen={isConfirmTerminateAllDialogOpen} isOpen={isConfirmTerminateAllDialogOpen}
@ -129,7 +127,7 @@ const SettingsPrivacyActiveSessions: FC<StateProps & DispatchProps> = ({
confirmHandler={handleTerminateAllSessions} confirmHandler={handleTerminateAllSessions}
confirmIsDestructive confirmIsDestructive
/> />
)}; )}
</div> </div>
); );
}; };