Fix config path, env secrets, and align API calls

This commit is contained in:
Nirodan
2026-01-22 07:56:27 +01:00
parent 73d487255a
commit c0aaa86546
7 changed files with 41 additions and 5 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ function Md5Tool() {
const hashPassword = async () => {
try {
const res = await axios.post('/api/hash/md5', { password: input });
const res = await axios.post('/hash/md5', { password: input });
setResult(res.data.md5);
} catch (err) {