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

View File

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

View File

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