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