Skip to content

Commit

Permalink
Task #230243 state autopopulate issue solve (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
namita-25 authored Dec 3, 2024
1 parent daee796 commit 187356f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/jsHelper/helper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ export const transformData = (userData) => {
annualIncome: userData?.annualIncome ?? "",
caste: userData?.caste?.toLowerCase() ?? "",
disabled: userData?.disability ? "yes" : "no",
state: userData?.current_school_address?.split(",")?.[1]?.trim() ?? "",
state: userData?.state ?? "",
studentType: userData?.studentType === "Day" ? "dayScholar" : "hostler",
docs: userData?.docs ?? [],
bankAccountHolderName: userData?.bankAccountHolderName ?? "",
Expand Down

0 comments on commit 187356f

Please sign in to comment.