Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOB Values Limit in patient registration form #9735

Merged
merged 20 commits into from
Jan 20, 2025

Conversation

Rishith25
Copy link
Contributor

@Rishith25 Rishith25 commented Jan 4, 2025

Proposed Changes

@ohcnetwork/care-fe-code-reviewers

Merge Checklist

  • Add specs that demonstrate bug / test a new feature.
  • Update product documentation.
  • Ensure that UI text is kept in I18n files.
  • Prep screenshot or demo video for changelog entry, and attach it to issue.
  • Request for Peer Reviews
  • Completion of QA

Summary by CodeRabbit

  • New Features

    • Enhanced date of birth validation in patient registration
    • Added input constraints for day, month, and year fields
    • Improved user feedback for date input accuracy
  • Bug Fixes

    • Prevented submission of invalid or future dates of birth

@Rishith25 Rishith25 requested a review from a team as a code owner January 4, 2025 07:26
Copy link
Contributor

coderabbitai bot commented Jan 4, 2025

Walkthrough

The pull request focuses on enhancing the date of birth (DOB) validation in the PatientRegistration component. By integrating the dayjs library, the changes implement robust validation for DOB input fields. The modifications include setting constraints for day (1-31), month (1-12), and year (1900-current year) inputs. These updates ensure that users can only enter valid dates, preventing incorrect submissions and improving the overall form validation process.

Changes

File Change Summary
src/components/Patient/PatientRegistration.tsx - Added dayjs import for date manipulation
- Enhanced DOB field validation in form schema
- Added input constraints for day (1-31), month (1-12), and year (1900-current)

Assessment against linked issues

Objective Addressed Explanation
Limit DOB values [#9725]

Possibly related PRs

Suggested labels

needs review

Suggested reviewers

  • rithviknishad
  • Jacobjeevan

Poem

🐰 A rabbit's validation dance,
Where dates now leap with careful glance,
No more wild years or crazy days,
Our form now sings in structured ways!
DOB validation, precise and bright ✨


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Beta)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

netlify bot commented Jan 4, 2025

Deploy Preview for care-ohc ready!

Name Link
🔨 Latest commit 7c405d8
🔍 Latest deploy log https://app.netlify.com/sites/care-ohc/deploys/678a3ae112ea0100086a8414
😎 Deploy Preview https://deploy-preview-9735--care-ohc.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (2)
src/components/Patient/PatientRegistration.tsx (2)

458-464: Consider handling partial date states for the day field.

Clamping day values between 1 and 31 is helpful, but if the user deletes the field contents or enters partial digits, it will produce intermediate states like “YYYY-MM-” (missing day). In some edge cases, these partial states might be confused with a valid date. Consider adopting a unified approach (e.g. a single date picker or a fully validated [DD-MM-YYYY] input) to handle partial states more gracefully.


477-483: Consider extracting repeated logic for day/month handlers into a helper function.

The month field’s clamping logic mirrors the day field approach. Extracting common logic for day/month updates into a helper can improve maintainability, reduce duplication, and simplify testing.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 68c4c3d and e442dcf.

📒 Files selected for processing (1)
  • src/components/Patient/PatientRegistration.tsx (3 hunks)
🔇 Additional comments (1)
src/components/Patient/PatientRegistration.tsx (1)

496-504: Verify numeric clamping for the year field.

Although the HTML attributes min={1900} and max={new Date().getFullYear()} visually guide many browsers, they don’t fully prevent out-of-range values (e.g., 1800 or 3000) in less strict or older browsers. Consider adding a numeric clamp (similar to day/month) or displaying a validation error if the year is outside [1900, currentYear].

Run the following script to search for any references to year validations or test coverage across the codebase:

✅ Verification successful

Let me search for more specific validation patterns.


Let me search for the specific validation in the patient registration component.


Let me try a different search pattern to find the validation logic.


Let me try one final search pattern to locate the validation logic.


The year input already has proper numeric clamping.

The code shows that the year input field has both min and max attributes properly set:

  • min={1900}: Prevents years before 1900
  • max={new Date().getFullYear()}: Dynamically sets the maximum to the current year

Additionally, there's a length validation that only allows changes when value.length <= 4, preventing invalid year formats. The HTML5 number input type also provides built-in validation.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Search for references to year validations or existing date-of-birth tests
rg -A 5 "year" 

Length of output: 42745


Script:

#!/bin/bash
# Search for date validation patterns and year-related constraints
rg -A 5 "(min|max).*year|year.*validation" 

# Search for specific year validation in the patient registration component
ast-grep --pattern 'if ($$$year$$$) { $$$ }'

Length of output: 4994


Script:

#!/bin/bash
# Search for date of birth validation in PatientRegistration.tsx
rg -A 10 "date_of_birth.*onChange" src/components/Patient/PatientRegistration.tsx

# Search for any min/max attributes on the year input
rg "min.*max.*YYYY|YYYY.*min.*max" src/components/Patient/PatientRegistration.tsx

Length of output: 167


Script:

#!/bin/bash
# Search for the input field and its validation in PatientRegistration.tsx
rg -A 10 "type=\"number\".*placeholder=\"YYYY\"" src/components/Patient/PatientRegistration.tsx

# Search for any validation functions or error handling related to date/year
rg -A 5 "setForm.*date_of_birth|errors\[.*date_of_birth\]" src/components/Patient/PatientRegistration.tsx

Length of output: 201


Script:

#!/bin/bash
# Search for the year input field and surrounding context
rg -B 5 -A 10 "placeholder=\"YYYY\"" src/components/Patient/PatientRegistration.tsx

# Search for any form validation schema or rules
ast-grep --pattern 'const $_ = z.object({
  $$$
  date_of_birth: $$$,
  $$$
})'

Length of output: 998

@bodhish
Copy link
Member

bodhish commented Jan 4, 2025

The implementation doesn't look clean.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (3)
src/components/Patient/PatientRegistration.tsx (3)

284-290: Consider defining monthDays as a constant.

The monthDays array should be defined as a constant outside the function to avoid recreation on each function call.

+const MONTH_DAYS = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
+
 const isValidDate = (day: number, month: number, year: number): boolean => {
-  const monthDays = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
   if (month === 2) {
     return day <= (isLeapYear(year) ? 29 : 28);
   }
-  return day <= monthDays[month - 1];
+  return day <= MONTH_DAYS[month - 1];
 };

292-365: Consider refactoring handleDateOfBirth for better maintainability.

The function handles multiple responsibilities and contains nested conditionals. Consider breaking it down into smaller, focused functions:

  1. Separate validation logic
  2. Separate error message generation
  3. Use early returns to reduce nesting
+const validateDatePart = (
+  part: "day" | "month" | "year",
+  value: number,
+  min: number,
+  max: number
+): string => {
+  if (part === "year" && (value < min || value > max)) {
+    return t("INVALID_YEAR", { min: MIN_YEAR, max: MAX_YEAR });
+  }
+  if (value < min || value > max) {
+    return t(`INVALID_${part.toUpperCase()}`);
+  }
+  return "";
+};
+
+const validateCompleteDate = (
+  day: number,
+  month: number,
+  year: number
+): string => {
+  if (!isValidDate(day, month, year)) {
+    return t("INVALID_DATE");
+  }
+  
+  const selectedDate = new Date(year, month - 1, day);
+  if (selectedDate > new Date()) {
+    return t("DATE_NOT_ALLOWED");
+  }
+  
+  return "";
+};
+
 const handleDateOfBirth = (
   part: "day" | "month" | "year",
   value: string,
   min: number,
   max: number,
   maxLength: number,
 ) => {
   if (value.length > maxLength) {
     value = value.slice(0, maxLength);
   }
   const numericValue = Number(value.slice(0, maxLength));
+  let errorMessage = validateDatePart(part, numericValue, min, max);
+  let formattedValue = errorMessage ? "" : value;
 
   setForm((prevState) => {
     const [currentYear, currentMonth, currentDay] =
       prevState.date_of_birth?.split("-") || ["", "", ""];
 
-    let formattedValue = value;
-    let errorMessage = "";
-
-    if (part === "day") {
-      if (numericValue < min || numericValue > max) {
-        formattedValue = "";
-        errorMessage = t("INVALID_DAY");
-      }
-    } else if (part === "month") {
-      if (numericValue < min || numericValue > max) {
-        formattedValue = "";
-        errorMessage = t("INVALID_MONTH");
-      }
-    } else if (part === "year") {
-      if (formattedValue.length === 4) {
-        const yearValue = Number(formattedValue);
-
-        if (yearValue < min || yearValue > max) {
-          formattedValue = "";
-          errorMessage = t("INVALID_YEAR", { min: MIN_YEAR, max: MAX_YEAR });
-        }
-      }
-    }
-
     const updatedDay = part === "day" ? formattedValue : currentDay;
     const updatedMonth = part === "month" ? formattedValue : currentMonth;
     const updatedYear = part === "year" ? formattedValue : currentYear;
 
     if (updatedDay && updatedMonth && updatedYear) {
-      const day = Number(updatedDay);
-      const month = Number(updatedMonth);
-      const year = Number(updatedYear);
-
-      if (!isValidDate(day, month, year)) {
-        errorMessage = t("INVALID_DATE");
-      } else {
-        const today = new Date();
-        const selectedDate = new Date(year, month - 1, day);
-
-        if (selectedDate > today) {
-          errorMessage = t("DATE_NOT_ALLOWED");
-        }
-      }
+      const completeDateError = validateCompleteDate(
+        Number(updatedDay),
+        Number(updatedMonth),
+        Number(updatedYear)
+      );
+      errorMessage = completeDateError || errorMessage;
     }

539-583: Consider UX improvements for date input fields.

While the implementation is clean, consider these improvements:

  1. Use type="text" inputMode="numeric" pattern="[0-9]*" instead of type="number" to prevent the spinner buttons and ensure better mobile experience
  2. Add ARIA labels for better accessibility
 <Input
-  type="number"
+  type="text"
+  inputMode="numeric"
+  pattern="[0-9]*"
   placeholder={placeholders[key]}
+  aria-label={t(`enter_${key}`)}
   value={
     form.date_of_birth?.split("-")[
       ["year", "month", "day"].indexOf(key)
     ] || ""
   }
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between e442dcf and b6ddcc1.

📒 Files selected for processing (2)
  • public/locale/en.json (2 hunks)
  • src/components/Patient/PatientRegistration.tsx (3 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (3)
  • GitHub Check: Redirect rules - care-ohc
  • GitHub Check: Header rules - care-ohc
  • GitHub Check: Pages changed - care-ohc
🔇 Additional comments (3)
public/locale/en.json (1)

32-32: Well-defined localization messages for date validation!

The error messages are clear, specific, and match the validation logic in the code:

  • Invalid date format
  • Day/Month/Year range validation
  • Future date validation

Also applies to: 74-77

src/components/Patient/PatientRegistration.tsx (2)

83-84: LGTM! Well-defined year boundaries.

The year range constants are appropriately defined with reasonable bounds.


280-282: LGTM! Correct leap year implementation.

The leap year calculation follows the standard algorithm: divisible by 4 AND (not divisible by 100 OR divisible by 400).

@Rishith25
Copy link
Contributor Author

@bodhish @rithviknishad Can you please review updated changes

@github-actions github-actions bot added the merge conflict pull requests with merge conflict label Jan 8, 2025
Copy link

github-actions bot commented Jan 8, 2025

👋 Hi, @Rishith25,
Conflicts have been detected against the base branch. Please rebase your branch against the base branch.


This message is automatically generated by prince-chrismc/label-merge-conflicts-action so don't hesitate to report issues/improvements there.

@Jacobjeevan
Copy link
Contributor

@Rishith25 What's the update here? As discussed in the call, use dayjs to simplify the logic.

@Rishith25
Copy link
Contributor Author

@Jacobjeevan I will update it

@Rishith25
Copy link
Contributor Author

@bodhish @Jacobjeevan @rithviknishad
Following changes are done

  • I have used dayjs for date validation
  • Now user is not allowed to enter day, month, year values out of range
  • The input is restricted to valid values
  • If user enters incorrect values corresponding error message will be shown

@github-actions github-actions bot added needs-triage question Further information is requested labels Jan 10, 2025
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (3)
src/components/Patient/PatientRegistration.tsx (2)

296-297: Move constants to the top of the file.

Consider moving these constants to the top of the file with other constant declarations for better code organization and maintainability.

// Move to top of file with other constants
-  const MIN_YEAR = 1900;
-  const MAX_YEAR = new Date().getFullYear();

// At the top of the file after imports
+const MIN_YEAR = 1900;
+const MAX_YEAR = new Date().getFullYear();

525-571: Improve date input accessibility and user experience.

The date input implementation could be enhanced with better accessibility and user experience features.

Consider these improvements:

 {["day", "month", "year"].map((part) => {
   const key = part as "day" | "month" | "year";
   const placeholders = {
     day: "DD",
     month: "MM",
     year: "YYYY",
   };
   const maxLengths = { day: 2, month: 2, year: 4 };
   const limits = {
     day: { min: 1, max: 31 },
     month: { min: 1, max: 12 },
     year: { min: MIN_YEAR, max: MAX_YEAR },
   };
   return (
     <div className="flex-1" key={key}>
       <Label className="mb-2">
         {t(key)}
         <span className="text-red-500">*</span>
       </Label>
       <Input
         placeholder={placeholders[key]}
         type="text"
+        aria-label={t(key)}
+        inputMode="numeric"
+        pattern="[0-9]*"
         value={
           form.date_of_birth?.split("-")[
             ["year", "month", "day"].indexOf(key)
           ] || ""
         }
         maxLength={maxLengths[key]}
         onChange={(e) => {
           const value = e.target.value;
           if (
             value.length <= maxLengths[key] &&
             Number(value) <= limits[key].max
           ) {
             handleDateOfBirth(
               key,
               value,
               limits[key].min,
               limits[key].max,
               maxLengths[key],
             );
+            // Auto-focus next field when current field is complete
+            if (value.length === maxLengths[key]) {
+              const nextField = {
+                day: "month",
+                month: "year",
+                year: null
+              }[key];
+              if (nextField) {
+                const nextInput = document.querySelector(
+                  `input[aria-label="${t(nextField)}"]`
+                ) as HTMLInputElement;
+                nextInput?.focus();
+              }
+            }
           }
         }}
+        onKeyDown={(e) => {
+          // Handle backspace on empty field to focus previous field
+          if (e.key === "Backspace" && !e.currentTarget.value) {
+            const prevField = {
+              year: "month",
+              month: "day",
+              day: null
+            }[key];
+            if (prevField) {
+              const prevInput = document.querySelector(
+                `input[aria-label="${t(prevField)}"]`
+              ) as HTMLInputElement;
+              prevInput?.focus();
+            }
+          }
+        }}
       />
     </div>
   );
 })}
public/locale/en.json (1)

31-33: Standardize translation key naming and improve message clarity.

The date validation messages could be more user-friendly and follow a consistent naming pattern.

Consider these improvements:

-  "DATE_FORMAT": "Note: Please enter the date in DD-MM-YYYY format.",
-  "DATE_NOT_ALLOWED": "Date must be on or before today's date. Please correct the date.",
-  "INVALID_DATE": "Invalid day for the selected month and year. Please correct the date.",
+  "DATE__FORMAT": "Please enter the date as DD-MM-YYYY",
+  "DATE__FUTURE_NOT_ALLOWED": "The date cannot be in the future. Please enter a date on or before today.",
+  "DATE__INVALID": "The date is not valid for the selected month and year. Please check and try again.",
+  "DATE__INVALID_DAY": "Please enter a valid day (1-31)",
+  "DATE__INVALID_MONTH": "Please enter a valid month (1-12)",
+  "DATE__INVALID_YEAR": "Please enter a valid year (1900-present)"

Also applies to: 76-76

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 48fbc9c and e8b4773.

📒 Files selected for processing (2)
  • public/locale/en.json (2 hunks)
  • src/components/Patient/PatientRegistration.tsx (4 hunks)

src/components/Patient/PatientRegistration.tsx Outdated Show resolved Hide resolved
@github-actions github-actions bot added merge conflict pull requests with merge conflict and removed merge conflict pull requests with merge conflict labels Jan 10, 2025
@github-actions github-actions bot removed the merge conflict pull requests with merge conflict label Jan 11, 2025
@Jacobjeevan Jacobjeevan added waiting for related PR a co-related detail PR is under construction and removed question Further information is requested needs-triage labels Jan 13, 2025
@Jacobjeevan
Copy link
Contributor

Switching to react hook forms in #9854. Wait for that to get merged and update as necessary.

@github-actions github-actions bot added the merge conflict pull requests with merge conflict label Jan 13, 2025
Copy link

👋 Hi, @Rishith25,
Conflicts have been detected against the base branch. Please rebase your branch against the base branch.


This message is automatically generated by prince-chrismc/label-merge-conflicts-action so don't hesitate to report issues/improvements there.

@rithviknishad rithviknishad removed the waiting for related PR a co-related detail PR is under construction label Jan 13, 2025
public/locale/en.json Outdated Show resolved Hide resolved
public/locale/en.json Outdated Show resolved Hide resolved
src/components/Patient/PatientRegistration.tsx Outdated Show resolved Hide resolved
src/components/Patient/PatientRegistration.tsx Outdated Show resolved Hide resolved
@Rishith25 Rishith25 requested a review from bodhish January 15, 2025 09:54
@github-actions github-actions bot removed the merge conflict pull requests with merge conflict label Jan 15, 2025
value={
form.watch("date_of_birth")?.split("-")[2]
}
onChange={(e) => {
form.setValue(
"date_of_birth",
`${form.watch("date_of_birth")?.split("-")[0]}-${form.watch("date_of_birth")?.split("-")[1]}-${e.target.value}`,
`${form.watch("date_of_birth")?.split("-")[0]}-${form.watch("date_of_birth")?.split("-")[1]}-${e.target.value.slice(0, 2)}`,
Copy link
Contributor

@Jacobjeevan Jacobjeevan Jan 15, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

are the slice here and below necessary 🤔

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah to restrict the input size , otherwise more than 2digits can be entered.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just checked, it's unnecessary since you are specifying the min and max. Even if user enters more the correct number of digits, submit will highlight the issue.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Jacobjeevan I have done the changes. Can you review it

@Rishith25 Rishith25 requested a review from Jacobjeevan January 17, 2025 06:56
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (1)
src/components/Patient/PatientRegistration.tsx (1)

108-111: Consider enhancing date validation with more specific error messages.

The current validation is good but could provide better user feedback by separating the validation into distinct cases.

 .refine((date) => {
   const parsedDate = dayjs(date);
-  return parsedDate.isValid() && !parsedDate.isAfter(dayjs());
+  if (!parsedDate.isValid()) {
+    return t("invalid_date_format");
+  }
+  if (parsedDate.isAfter(dayjs())) {
+    return t("future_date_not_allowed");
+  }
+  return true;
 }, t("enter_valid_dob"))
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 7401c4d and 7c405d8.

📒 Files selected for processing (1)
  • src/components/Patient/PatientRegistration.tsx (5 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (2)
  • GitHub Check: OSSAR-Scan
  • GitHub Check: cypress-run (1)

@bodhish bodhish merged commit e83dbc4 into ohcnetwork:develop Jan 20, 2025
22 checks passed
Copy link

@Rishith25 Your efforts have helped advance digital healthcare and TeleICU systems. 🚀 Thank you for taking the time out to make CARE better. We hope you continue to innovate and contribute; your impact is immense! 🙌

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Limit on patient DOB values
4 participants