fix: correct spelling of 'canceled' in payment status across components

This commit is contained in:
hamed
2026-07-03 10:56:04 +03:30
parent 90d4a871f5
commit f5e06cfc13
3 changed files with 3 additions and 3 deletions
@@ -6,7 +6,7 @@ function Head({ status, setStatus }) {
const statusMap = {
0: undefined, // all
1: "pending",
2: "received",
2: "success",
3: "canceled",
};