Formatting
This commit is contained in:
parent
47ce986834
commit
14b68e4463
1 changed files with 10 additions and 14 deletions
|
@ -1,9 +1,5 @@
|
||||||
import React, { useState } from "react";
|
import React, { useState } from "react";
|
||||||
import { api } from "../API/API";
|
|
||||||
import InputField from "./InputField";
|
import InputField from "./InputField";
|
||||||
import BackButton from "./BackButton";
|
|
||||||
import Button from "./Button";
|
|
||||||
|
|
||||||
|
|
||||||
function ChangeUsername(): JSX.Element {
|
function ChangeUsername(): JSX.Element {
|
||||||
const [newUsername, setNewUsername] = useState("");
|
const [newUsername, setNewUsername] = useState("");
|
||||||
|
@ -12,16 +8,16 @@ function ChangeUsername(): JSX.Element {
|
||||||
setNewUsername(e.target.value);
|
setNewUsername(e.target.value);
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleSubmit = async (): Promise<void> => {
|
// const handleSubmit = async (): Promise<void> => {
|
||||||
try {
|
// try {
|
||||||
// Call the API function to update the username
|
// // Call the API function to update the username
|
||||||
await api.updateUsername(newUsername);
|
// await api.updateUsername(newUsername);
|
||||||
// Optionally, add a success message or redirect the user
|
// // Optionally, add a success message or redirect the user
|
||||||
} catch (error) {
|
// } catch (error) {
|
||||||
console.error("Error updating username:", error);
|
// console.error("Error updating username:", error);
|
||||||
// Optionally, handle the error
|
// // Optionally, handle the error
|
||||||
}
|
// }
|
||||||
};
|
// };
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
|
|
Loading…
Reference in a new issue