Skip to content

Commit

Permalink
chore: add decryption key translation
Browse files Browse the repository at this point in the history
  • Loading branch information
bjarneo committed Oct 31, 2024
1 parent dccea18 commit f79b492
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/routes/secret/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -214,14 +214,14 @@ const Secret = () => {
{/* Decryption Key Input */}
{!encryptionKey && !isSecretOpen && (
<div className="space-y-2">
<p className="text-base text-gray-300">{t('secret.decryption_key')}</p>
<p className="text-base text-gray-300">{t('home.decryption_key')}</p>
<div className="relative">
<span className="absolute inset-y-0 left-0 pl-3 flex items-center text-gray-400">
<IconShieldLock size={14} />
</span>
<input
type="text"
placeholder={t('secret.decryption_key_placeholder')}
placeholder={t('home.decryption_key')}
value={decryptionKey}
onChange={(event) => setDecryptionKey(event.target.value)}
required
Expand Down

0 comments on commit f79b492

Please sign in to comment.