MD5 hasher Bug Fix + Logger

This commit is contained in:
Nirodan
2025-06-17 11:00:26 +02:00
parent b6399f8b52
commit bbb1a70b9c
2 changed files with 32 additions and 9 deletions
+2 -1
View File
@@ -7,7 +7,8 @@ function Md5Tool() {
const hashPassword = async () => {
try {
const res = await axios.post('/hash/md5', { password: input });
const res = await axios.post('/api/hash/md5', { password: input });
setResult(res.data.md5);
} catch (err) {
alert('Fehler beim Hashen');