Site Search Update

This commit is contained in:
headlesdev
2025-05-20 17:40:29 +02:00
parent cd014f7de0
commit d1a289c4fa
6 changed files with 76 additions and 42 deletions

View File

@@ -42,7 +42,7 @@ export default function SetupPage() {
}
try {
// Create user
const response = await axios.post("/api/user/create", {
await axios.post("/api/user/create", {
email,
username,
name,
@@ -216,7 +216,7 @@ export default function SetupPage() {
<button className="btn btn-outline flex-1" onClick={handlePreviousStep}>
Back
</button>
<button className="btn btn-primary flex-1" onClick={handleComplete}>Next</button>
<button className="btn btn-primary flex-1" onClick={handleNextStep}>Next</button>
</div>
</div>
)}