Skip to content

Commit

Permalink
Added autofocus to pin
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhilshakohi committed Apr 14, 2024
1 parent 6b1d5cf commit 39b2807
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .firebase/hosting.YnVpbGQ.cache
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ logo192.png,499162500000,3ee59515172ee198f3be375979df15ac5345183e656720a381b8872
logo512.png,499162500000,ee7e2f3fdb8209c4b6fd7bef6ba50d1b9dba30a25bb5c3126df057e1cb6f5331
manifest.json,499162500000,aff3449bdc238776f5d6d967f19ec491b36aed5fb7f23ccff6500736fd58494a
robots.txt,499162500000,bfe106a3fb878dc83461c86818bf74fc1bdc7f28538ba613cd3e775516ce8b49
asset-manifest.json,1703881594866,04ede845eb8c3f5bda000679b4e93918709905c0d90b324083012b78b8861364
static/css/main.764fa95a.css.map,1703881594881,02341d56426d56f5a018a15937a6c474828bf66ff1bf7b95337908a2c3a20bda
index.html,1703881594866,05a9893d12e180014ded50cc507e82253ec0134ae10831b0d4413e755869b874
static/css/main.764fa95a.css,1703881594881,c41abdc4ecad5b94824a47628f2f8503eee821459a1b7e7e17cb6a7cd7cd4800
static/js/main.b7cd6a7d.js.LICENSE.txt,1703881594881,19d1831a8bd9ade0a950fa7232994b63b78fe65d133fea1b6cb391e8febbff3e
static/js/main.b7cd6a7d.js,1703881594881,5387854f8da2c34a5ec44fd3e6182bd5d27b0ed3fadddbef682787f51ed81614
static/js/main.b7cd6a7d.js.map,1703881594897,3b60b30bd5f61cd7ad38292859cf76b33a4648185f7545640569d96425805251
asset-manifest.json,1713028812523,34d48e7579159bfd12e874a7ba94754efc639c2c06d3dd2e0f820cd016acd256
index.html,1713028812523,9358312fc0ca2b5ef0b52f297ccd6ed27d08bdc5a203f07bf42eaee70c3f06e2
static/css/main.764fa95a.css,1713028812543,c41abdc4ecad5b94824a47628f2f8503eee821459a1b7e7e17cb6a7cd7cd4800
static/js/main.46c5fbd9.js.LICENSE.txt,1713028812543,19d1831a8bd9ade0a950fa7232994b63b78fe65d133fea1b6cb391e8febbff3e
static/css/main.764fa95a.css.map,1713028812543,02341d56426d56f5a018a15937a6c474828bf66ff1bf7b95337908a2c3a20bda
static/js/main.46c5fbd9.js,1713028812543,773db3e74aa3b2413cc064372ae8e8824e3f14c6030f0f4e5a47ed7a90a16af6
static/js/main.46c5fbd9.js.map,1713028812543,eed693c9187373915ffe7917948043e41b6c43d16ed9f042b74351fb742d8a85
2 changes: 1 addition & 1 deletion src/components/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ const Home = () => {
Enter your PIN to load your content securely:<br />
</DialogContentText>
}
<TextField margin="normal" required fullWidth id="pinInput" label="PIN" inputRef={pinMainRef} name="pinMain" autoComplete="off" value={pinInput.pinMain} error={!!pinError} helperText={pinError} onChange={updatePin} type={showPin.main ? "text" : "password"}
<TextField margin="normal" required fullWidth id="pinInput" label="PIN" inputRef={pinMainRef} name="pinMain" autoComplete="off" value={pinInput.pinMain} error={!!pinError} helperText={pinError} onChange={updatePin} type={showPin.main ? "text" : "password"} autoFocus="true"
InputProps={{
endAdornment: (
<InputAdornment position="end">
Expand Down

0 comments on commit 39b2807

Please sign in to comment.