diff --git a/.env b/.env
index f9a3c75..6c6866d 100644
--- a/.env
+++ b/.env
@@ -1,4 +1,4 @@
VITE_TOKEN_NAME = 'dsc_token'
VITE_REFRESH_TOKEN_NAME = 'dsc_refresh_token'
VITE_BASE_URL = 'https://api.danakcorp.com'
-# VITE_BASE_URL = 'http://192.168.1.117:4000'
\ No newline at end of file
+# VITE_BASE_URL = 'http://192.168.1.108:4000'
\ No newline at end of file
diff --git a/src/langs/fa.json b/src/langs/fa.json
index 5ff526d..fead763 100644
--- a/src/langs/fa.json
+++ b/src/langs/fa.json
@@ -495,6 +495,17 @@
"ticket_limit": "ظرفیت ارسال تیکت",
"technical_issue_resolution": "رفع ایراد فنی",
"service_functionality_test": "تست عملکرد سرویس",
+ "1-learning_docs": "راهنما و مستندات آموزشی",
+ "2-ticket_support": "ارسال تیکت",
+ "3-ticket_limit": "ظرفیت ارسال تیکت",
+ "4-response_time": "زمان پاسخگویی به تیکت",
+ "5-technical_issue_resolution": "رفع ایراد فنی",
+ "6-phone_support": "پاسخگویی تلفنی",
+ "7-technical_expert_access": "دسترسی به متخصصین فنی",
+ "8-backup_version": "نسخه بکاپ",
+ "9-service_functionality_test": "تست عملکرد سرویس",
+ "10-on_site_support": "پشتیبانی در محل",
+ "11-on_site_training": "آموزش در محل",
"plans": "پلن ها",
"plan_name": "نام پلن",
"price": "قیمت",
diff --git a/src/pages/support/Support.tsx b/src/pages/support/Support.tsx
index f70c3b5..4143c0c 100644
--- a/src/pages/support/Support.tsx
+++ b/src/pages/support/Support.tsx
@@ -129,7 +129,7 @@ const Support: FC = () => {
:
{row.featureValue}
- {row.featureKey === 'ticket_limit' && ' (روزانه)'}
+ {row.featureKey === SupportPlanFeatureKey.TICKET_LIMIT && ' (روزانه)'}
}
diff --git a/src/pages/support/SupportInfo.tsx b/src/pages/support/SupportInfo.tsx
index 2f31aa1..f7773ae 100644
--- a/src/pages/support/SupportInfo.tsx
+++ b/src/pages/support/SupportInfo.tsx
@@ -175,7 +175,7 @@ const SupportInfo: FC = () => {
:
{row.featureValue}
- {row.featureKey === 'ticket_limit' && ' (روزانه)'}
+ {row.featureKey === SupportPlanFeatureKey.TICKET_LIMIT && ' (روزانه)'}
}
diff --git a/src/pages/support/enum/SupportEnum.ts b/src/pages/support/enum/SupportEnum.ts
index 1c587d2..c7a0eea 100644
--- a/src/pages/support/enum/SupportEnum.ts
+++ b/src/pages/support/enum/SupportEnum.ts
@@ -1,11 +1,13 @@
export enum SupportPlanFeatureKey {
- LEARNING_DOCS = "learning_docs", // راهنما و مستندات آموزشی
- TICKET_SUPPORT = "ticket_support", // ارسال تیکت
- RESPONSE_TIME = "response_time", // زمان پاسخگویی به تیکت
- PHONE_SUPPORT = "phone_support", // پاسخگویی تلفنی
- BACKUP_VERSION = "backup_version", // نسخه بکاپ
- TECHNICAL_EXPERT_ACCESS = "technical_expert_access", // دسترسی به متخصصین فنی
- ON_SITE_SUPPORT = "on_site_support", // پشتیبانی در محل
- ON_SITE_TRAINING = "on_site_training", // آموزش در محل
- TICKET_LIMIT = "ticket_limit", // ظرفیت ارسال تیکت
+ LEARNING_DOCS = "1-learning_docs", // راهنما و مستندات آموزشی
+ TICKET_SUPPORT = "2-ticket_support", // ارسال تیکت
+ TICKET_LIMIT = "3-ticket_limit", // ظرفیت ارسال تیکت
+ RESPONSE_TIME = "4-response_time", // زمان پاسخگویی به تیکت
+ TECHNICAL_ISSUE_RESOLUTION = "5-technical_issue_resolution", // رفع ایراد فنی
+ PHONE_SUPPORT = "6-phone_support", // پاسخگویی تلفنی
+ TECHNICAL_EXPERT_ACCESS = "7-technical_expert_access", // دسترسی به متخصصین فنی
+ BACKUP_VERSION = "8-backup_version", // نسخه بکاپ
+ SERVICE_FUNCTIONALITY_TEST = "9-service_functionality_test", // تست عملکرد سرویس
+ ON_SITE_SUPPORT = "10-on_site_support", // پشتیبانی در محل
+ ON_SITE_TRAINING = "11-on_site_training", // آموزش در محل
}