added time for reviews

This commit is contained in:
2026-05-16 00:39:35 +02:00
parent 1170a285e7
commit 20602c6dd5
+3 -1
View File
@@ -39,11 +39,13 @@ function Reviews() {
}
const sendReview = async () => {
const date = new Date().toISOString();
const review = {
"website": selectedWebsite,
"rating": selectedRating,
"text": text,
"date": "today"
"date": date,
}
console.log(JSON.stringify(review));