Updated the Info page

This commit is contained in:
Mathias Wagner 2023-09-09 17:58:39 +02:00
parent cf89827bca
commit 60fa36a65e
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44
3 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ export const Delete = () => {
await deleteRequest(`/project/${currentProject.id}`);
await updateProjects();
} catch (e) {
console.error(e);
console.error(e.message);
}
}

View File

@ -16,7 +16,7 @@ export const Key = () => {
await postRequest(`/project/${currentProject.id}/regenerate`);
await updateProjects();
} catch (e) {
console.error(e);
console.error(e.message);
}
}

View File

@ -25,7 +25,7 @@ export const Name = () => {
await updateProjects();
setNameChanged(false);
} catch (e) {
console.error(e);
console.error(e.message);
}
}