Skip to content

Commit ea3987d

Browse files
committed
fix placeholder
1 parent 5d3744c commit ea3987d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/contract-verification/src/app/components/ConfigInput.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export const ConfigInput: React.FC<ConfigInputProps> = ({ label, id, secret, ini
4444
type={secret ? 'password' : 'text'}
4545
className={`form-control small w-100 ${!enabled ? 'bg-transparent pl-0 border-0' : ''}`}
4646
id={id}
47-
placeholder={intl.formatMessage({ id: "contract-verification.configInputPlaceholder" }, { label })}
47+
placeholder={intl.formatMessage({ id: "contract-verification.configInputPlaceholderText" }, { label })}
4848
value={value}
4949
onChange={(e) => setValue(e.target.value)}
5050
disabled={!enabled}

0 commit comments

Comments
 (0)