Skip to content

Commit

Permalink
Temporarily disable password audit feature as it slows down app launch
Browse files Browse the repository at this point in the history
  • Loading branch information
alchaplinsky committed Jan 29, 2023
1 parent e73fc4e commit 2fb8add
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/main/application/events/auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const onAuthStart = function (_, hashedSecret) {
this.sync.initialize(this.cryptor, this.vault)
this.authSuccess()
if (this.sync.isConfigured()) return this.pullVaultData()
else return this.getAudit()
else return //this.getAudit()
}
this.cryptor = null
return this.authFail()
Expand Down
6 changes: 3 additions & 3 deletions src/renderer/javascripts/components/main/sidebar/switcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Tooltip from 'components/elements/tooltip'
import LoginIcon from 'login.svg'
import CardIcon from 'card.svg'
import NoteIcon from 'note.svg'
import AuditIcon from 'information.svg'
// import AuditIcon from 'information.svg'

const Switcher = () => {
const { i18n } = window
Expand Down Expand Up @@ -47,14 +47,14 @@ const Switcher = () => {
<CardIcon with="28" height="28" />
</div>
</Tooltip>
<Tooltip content={i18n('Password Audit')} className="bottom">
{/* <Tooltip content={i18n('Password Audit')} className="bottom">
<div
className={itemClassname('audit', 'audit-button')}
onClick={() => switchScope('audit')}
>
<AuditIcon with="30" height="30" />
</div>
</Tooltip>
</Tooltip> */}
</div>
)
}
Expand Down

0 comments on commit 2fb8add

Please sign in to comment.