17982: Updates integration test cluster's config file to make tests work again.
[arvados-workbench2.git] / src / views / ssh-key-panel / ssh-key-panel.tsx
index 672b1bf316339eb3a49053f12657d5519639f575..24ca3468d181bc37dafe9d51f2cbdc4098fc7ae5 100644 (file)
@@ -11,7 +11,7 @@ import { SshKeyPanelRoot, SshKeyPanelRootDataProps, SshKeyPanelRootActionProps }
 
 const mapStateToProps = (state: RootState): SshKeyPanelRootDataProps => {
     const sshKeys = state.auth.sshKeys.filter((key) => {
-      return key.authorizedUserUuid == (state.auth.user ? state.auth.user.uuid : null);
+      return key.authorizedUserUuid === (state.auth.user ? state.auth.user.uuid : null);
     });
 
     return {