Skip to content

Commit

Permalink
Issue #PS-000 chore: Updated .env file
Browse files Browse the repository at this point in the history
  • Loading branch information
Rushikesh-Sonawane99 committed Sep 12, 2024
1 parent b26744b commit 61afd5a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@ NEXT_PUBLIC_TRACKING_API_URL=https://tracking-pratham.tekdinext.com
NEXT_PUBLIC_EVENT_BASE_URL=https://qa.prathamteacherapp.tekdinext.com/event-service/event/v1
NEXT_PUBLIC_NOTIFICATION_BASE_URL=https://notification-pratham.tekdinext.com
NEXT_PUBLIC_COURSE_PLANNER_API_URL=https://courseplan.tekdinext.com/project/v1
NEXT_PUBLIC_SUNBIRDSAAS_API_URL=https://sunbirdsaas.com
NEXT_PUBLIC_FRAMEWORK_API_URL=https://sunbirdsaas.com/api/framework/v1
NEXT_PUBLIC_SUNBIRDSAAS_API_URL=https://sunbirdsaas.com
3 changes: 2 additions & 1 deletion public/locales/en/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@
"DELETE_USER": "Delete User Permanently",
"DELETE_USER_WITH_REASON": "Delete User",
"USER_DELETED_PERMANENTLY": "User successfully deleted!",
"CANNOT_DELETE_TODAY_ATTENDANCE_MARKED": "Cannot delete learner as Attendance has already been marked for today",
"CANNOT_DELETE_TODAY_ATTENDANCE_MARKED": "Cannot delete learner as attendance has already been marked for today",
"CANNOT_DROPOUT_TODAY_ATTENDANCE_MARKED":"Cannot mark learner as dropout as attendance has already been marked for today",
"OBSERVATIONS_FORMS": "Observations and Forms",
"OTHER_REASON": "Other Reason",
"OTHER_REASON_PLACEHOLDER": "Enter Other Reason",
Expand Down
2 changes: 1 addition & 1 deletion src/components/center/FrameworkCategories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const FrameworkCategories: React.FC<FrameworkCategoriesProps> = ({
useEffect(() => {
const handleBMGS = async () => {
try {
const url = `${process.env.NEXT_PUBLIC_FRAMEWORK_API_URL}/read/${frameworkId}`;
const url = `${process.env.NEXT_PUBLIC_SUNBIRDSAAS_API_URL}/api/framework/v1/read/${frameworkId}`;
const boardData = await fetch(url).then((res) => res.json());
const frameworks = boardData?.result?.framework;
setFramework(frameworks);
Expand Down

0 comments on commit 61afd5a

Please sign in to comment.