Skip to content

Commit

Permalink
Changed username min length
Browse files Browse the repository at this point in the history
  • Loading branch information
devitq committed May 23, 2024
1 parent 12db9d8 commit 0b35d44
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/SignupForm/SignupForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export const SignupForm = (props) => {
className={Styles["form__field-input"]}
onInput={handleInput}
name="username"
placeholder="a-z, A-Z, 0-9, 4-32 символа"
placeholder="a-z, A-Z, 0-9, 3-32 символа"
required={true}
/>
</label>
Expand Down
8 changes: 8 additions & 0 deletions app/games/[id]/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,14 @@ export default function GamePage(props) {
</span>
</p>
</div>
<div className={Styles["about__author"]}>
<p>
Теги:{" "}
<span className={Styles["about__accent"]}>
{game.categories.map((category) => category.name).join(", ")}
</span>
</p>
</div>
</div>
<div className={Styles["about__vote"]}>
<p className={Styles["about__vote-amount"]}>
Expand Down

0 comments on commit 0b35d44

Please sign in to comment.