refactor comment system into comments plugin

This commit is contained in:
isUnknown 2024-10-29 11:12:57 +01:00
parent 31844269c0
commit fb36329556
8 changed files with 134 additions and 101 deletions

View file

@ -128,7 +128,7 @@ export const useApiStore = defineStore("api", () => {
};
try {
const response = await fetch("/add-comment.json", headers);
const response = await fetch("/create-comment.json", headers);
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}