Skip to content

Commit

Permalink
fix: allow for more even characters in bungie id
Browse files Browse the repository at this point in the history
apparently 26 is the max
  • Loading branch information
broccolai authored Mar 16, 2024
1 parent aca91d0 commit 543671d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/destiny/kd.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ export const KillDeath = () => {
<SectionName>LOOKUP</SectionName>
<form onSubmit={loadPlayer} autocomplete='off'>
<StyledInput
pattern='^[^#]{1,20}#[0-9]{1,4}$'
pattern='^[^#]{1,26}#[0-9]{1,4}$'
title='must be a valid bungie id format'
placeholder={'broccoli#679'}
onChange={(event) => setUser(event.target.value)}
Expand Down

0 comments on commit 543671d

Please sign in to comment.