Updated the Info page

This commit is contained in:
2023-09-09 17:58:39 +02:00
parent cf89827bca
commit 60fa36a65e
3 changed files with 3 additions and 3 deletions
src/states/Dashboard/pages/Info/components/Settings/components

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

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

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