\n\n**Desktop (please complete the following information):**\n\n- OS: [e.g. iOS]\n- Browser [e.g. chrome, safari]\n- Version [e.g. 22]\n\n**Smartphone (please complete the following information):**\n\n- Device: [e.g. iPhone6]\n- OS: [e.g. iOS8.1]\n- Browser [e.g. stock browser, safari]\n- Version [e.g. 22]\n\n**Additional context**\n1. The invalid HTML can cause accessibility and SEO issues.\n\n2. This can be especially problematic in SSR environments due to DOM mismatch between server-rendered and hydrated versions.\n\n3. It also affects maintainability for contributors unaware of this subtle nesting rule.\n\n---\n\n### 🚨 DO NOT EDIT BELOW THIS LINE 🚨\n\n### Instructions for Requesting Assignment:\n\nTo request assignment, please clearly outline your solution and timeline by commenting on the issue using the format below:\n\n**Describe your solution clearly:**\nProvide a detailed explanation of your proposed solution, including your approach, key implementation steps, and relevant examples or references. Mention any dependencies, assumptions, or risks you foresee that might affect your timeline or implementation.\n\n**Expected Timeline:**\n- End date: [Expected submission date of a completed Pull Request]\n\n**Additional Context:**\nInclude any other relevant context, links, screenshots, or resources that support your proposed solution.\n\n> 🚨 Your assignment may be unassigned if there is no activity or progress within the stated timeline unless communicated clearly and agreed upon.\n",[3182],{"name":3183,"color":3184},"stale","688388",13249,"closed","Hydration warning due to \u003Cdiv> inside \u003Cp> in ExpandableText component","2025-10-03T14:16:28Z","https://github.com/ohcnetwork/care_fe/issues/13249",0.66814256,{"description":3192,"labels":3193,"number":3194,"owner":3172,"repository":3173,"state":3186,"title":3195,"updated_at":3196,"url":3197,"score":3198},"**Describe the bug**\nWhen using `AlertDialogDescription` in `DischargeConfirmationDialog.tsx`, the component renders a `\u003Cp>` tag by default. \nSince the children passed to it include multiple `\u003Cp>` tags and a `\u003Cul>`, this results in invalid HTML (`\u003Cp>` cannot contain another `\u003Cp>` or `\u003Cul>`). \nThis causes hydration errors\n\n**To Reproduce**\nSteps to reproduce the behavior:\n\n1. Go to Ecounters.\n2. Click on view encounters of person and click on update details.\n3. click on update Encounter and then click on Mark for discharge.\n4. See error in console\nDirect link for local development view: [click here ](http://localhost:4000/facility/f50f0b79-461f-4e17-a55a-3df9b757978a/patient/106a9452-b0ad-4729-a33c-df8c302b4f62/encounter/08af18c2-6347-4546-a904-ab97aeb39927/questionnaire/encounter)\n\n**Expected behavior**\nNo hydration error in console.\n\n**Screenshots**\n\n\u003Cimg width=\"1896\" height=\"996\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/892fa113-6ca2-4741-ad5d-bb74d70dc269\" />\n\n**Desktop (please complete the following information):**\n\n- OS: [e.g. iOS]\n- Browser [e.g. chrome, safari]\n- Version [e.g. 22]\n\n**Smartphone (please complete the following information):**\n\n- Device: [e.g. iPhone6]\n- OS: [e.g. iOS8.1]\n- Browser [e.g. stock browser, safari]\n- Version [e.g. 22]\n\n**Additional context**\nThis issue occurs because AlertDialogPrimitive.Description renders a `\u003Cp>` by default.\nWhen multiple block elements (`\u003Cp>`, `\u003Cul>`) are provided as children, it generates invalid nested markup.\nA possible solution is to use asChild and render a `\u003Cdiv>` instead of `\u003Cp>`, allowing the children to include valid block elements.\n\n---\n\n### 🚨 DO NOT EDIT BELOW THIS LINE 🚨\n\n### Instructions for Requesting Assignment:\n\nTo request assignment, please clearly outline your solution and timeline by commenting on the issue using the format below:\n\n**Describe your solution clearly:**\nProvide a detailed explanation of your proposed solution, including your approach, key implementation steps, and relevant examples or references. Mention any dependencies, assumptions, or risks you foresee that might affect your timeline or implementation.\n\n**Expected Timeline:**\n- End date: [Expected submission date of a completed Pull Request]\n\n**Additional Context:**\nInclude any other relevant context, links, screenshots, or resources that support your proposed solution.\n\n> 🚨 Your assignment may be unassigned if there is no activity or progress within the stated timeline unless communicated clearly and agreed upon.\n",[],13884,"Use asChild with AlertDialogDescription to prevent nested \u003Cp> tags and hydration errors","2025-10-01T09:13:56Z","https://github.com/ohcnetwork/care_fe/issues/13884",0.67327636,{"description":3200,"labels":3201,"number":3203,"owner":3172,"repository":3173,"state":3186,"title":3204,"updated_at":3205,"url":3206,"score":3207},"Describe the bug\nHydration error occurs when accessing admin organization pages, causing React to throw hydration mismatch warnings and potentially breaking client-side functionality.\n\nTo Reproduce\nSteps to reproduce the behavior:\n\nGo to http://localhost:4000/admin/organizations/govt/6f89e366-263f-4154-ae1d-a53761ec53d4\n\nOpen browser developer console\n\nRefresh the page\n\nSee hydration error in console\n\nExpected behavior\nThe organization page should load without hydration errors, displaying the organization hierarchy and details correctly without any console warnings.\n\nScreenshots\n\n\u003Cimg width=\"2559\" height=\"1087\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/60942e84-452e-4018-9b9f-dd4c823301f8\" />\n\nConsole shows hydration mismatch error indicating server-rendered HTML doesn’t match client-side React output.\n\nDesktop (please complete the following information):\n\nOS: Windows\n\nBrowser: Chrome / Firefox / Safari\n\nVersion: Latest\n\nSmartphone (please complete the following information):\n\nDevice: Any mobile device\n\nOS: iOS / Android\n\nBrowser: Mobile browsers\n\nVersion: Latest\n\nAdditional context\nThe hydration error is caused by the expandedOrganizations state in AdminOrganizationList.tsx being initialized differently on server vs client.\n\nOn server-side, it renders with an empty Set.\n\nOn client-side, useEffect auto-expands parent organizations.\nThis mismatch leads to DOM structure differences during hydration.\n\n---\n\n🚨 **DO NOT EDIT BELOW THIS LINE** 🚨\n\n### Instructions for Requesting Assignment:\nTo request assignment, please clearly outline your solution and timeline by commenting on the issue using the format below:\n\n**Describe your solution clearly:** \nProvide a detailed explanation of your proposed solution, including your approach, key implementation steps, and relevant examples or references. Mention any dependencies, assumptions, or risks you foresee that might affect your timeline or implementation.\n\n**Expected Timeline:** \n- End date: [Expected submission date of a completed Pull Request]\n\n**Additional Context:** \nInclude any other relevant context, links, screenshots, or resources that support your proposed solution.\n\n🚨 *Your assignment may be unassigned if there is no activity or progress within the stated timeline unless communicated clearly and agreed upon.* 🚨\n",[3202],{"name":3183,"color":3184},13552,"Hydration error on admin organization pages","2025-09-30T06:01:44Z","https://github.com/ohcnetwork/care_fe/issues/13552",0.68295914,{"description":3209,"labels":3210,"number":3217,"owner":3172,"repository":3173,"state":3186,"title":3218,"updated_at":3219,"url":3220,"score":3221},"**Describe the bug**\n\nDouble horizontal scrolling is there and the UI is not proper and consistent when description text is long. This is affecting user experience.\n\nhttps://github.com/user-attachments/assets/214743ca-9021-4d25-8d1a-ee63dd940b14\n\n**Expected behavior**\nDescription section should have responsiveness. We can add ExpandText component when text is more than the normal \n\n**Screenshots**\nIf applicable, add screenshots to help explain your problem.\n\n**Desktop (please complete the following information):**\n\n- OS: [e.g. iOS]\n- Browser [e.g. chrome, safari]\n- Version [e.g. 22]\n\n**Smartphone (please complete the following information):**\n\n- Device: [e.g. iPhone6]\n- OS: [e.g. iOS8.1]\n- Browser [e.g. stock browser, safari]\n- Version [e.g. 22]\n\n**Additional context**\nAdd any other context about the problem here.\n\n---\n\n### 🚨 DO NOT EDIT BELOW THIS LINE 🚨\n\n### Instructions for Requesting Assignment:\n\nTo request assignment, please clearly outline your solution and timeline by commenting on the issue using the format below:\n\n**Describe your solution clearly:**\nProvide a detailed explanation of your proposed solution, including your approach, key implementation steps, and relevant examples or references. Mention any dependencies, assumptions, or risks you foresee that might affect your timeline or implementation.\n\n**Expected Timeline:**\n- End date: [Expected submission date of a completed Pull Request]\n\n**Additional Context:**\nInclude any other relevant context, links, screenshots, or resources that support your proposed solution.\n\n> 🚨 Your assignment may be unassigned if there is no activity or progress within the stated timeline unless communicated clearly and agreed upon.\n",[3211,3214],{"name":3212,"color":3213},"needs testing","bc1bf7",{"name":3215,"color":3216},"needs review","CCF900",12990,"Bug: Improve the UI for table of Tag Config Page","2025-08-19T06:47:46Z","https://github.com/ohcnetwork/care_fe/issues/12990",0.73191786,{"description":3223,"labels":3224,"number":3225,"owner":3172,"repository":3173,"state":3186,"title":3226,"updated_at":3227,"url":3228,"score":3229},"**Describe the bug**\n The recent design update of EncounterInfoCard works correctly in EncounterList, but it breaks the layout where it’s used to show an encounter’s association with an occupied location (bed).\n\n**To Reproduce**\nSteps to reproduce the behaviour:\n\n1. Go to `location` under patient main tab \n2. See for already occupied location if any present \n3. If not assign a location to any encounter\n4. See error\n\n\n**Screenshots**\n\n\u003Cimg width=\"1440\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/599812dd-92fd-4d68-88ea-cd51939dd8c9\" />\n\n**Desktop (please complete the following information):**\n\n- OS: [e.g. iOS]\n- Browser [e.g. chrome, safari]\n- Version [e.g. 22]\n\n**Smartphone (please complete the following information):**\n\n- Device: [e.g. iPhone6]\n- OS: [e.g. iOS8.1]\n- Browser [e.g. stock browser, safari]\n- Version [e.g. 22]\n\n**Additional context**\nAdd any other context about the problem here.\n\n---\n\n### 🚨 DO NOT EDIT BELOW THIS LINE 🚨\n\n### Instructions for Requesting Assignment:\n\nTo request assignment, please clearly outline your solution and timeline by commenting on the issue using the format below:\n\n**Describe your solution clearly:**\nProvide a detailed explanation of your proposed solution, including your approach, key implementation steps, and relevant examples or references. Mention any dependencies, assumptions, or risks you foresee that might affect your timeline or implementation.\n\n**Expected Timeline:**\n- End date: [Expected submission date of a completed Pull Request]\n\n**Additional Context:**\nInclude any other relevant context, links, screenshots, or resources that support your proposed solution.\n\n> 🚨 Your assignment may be unassigned if there is no activity or progress within the stated timeline unless communicated clearly and agreed upon.\n",[],12635,"EncounterInfoCard UI Update Breaks Location Association Display","2025-06-17T15:12:26Z","https://github.com/ohcnetwork/care_fe/issues/12635",0.7346995,{"description":3231,"labels":3232,"number":3234,"owner":3172,"repository":3173,"state":3186,"title":3235,"updated_at":3236,"url":3237,"score":3238},"**Describe the bug**\nThe \"Has child locations\" tag is not properly enclosed in mobile view for locations page\n\n**To Reproduce**\nSteps to reproduce the behavior:\n\n1. Go to 'Settings'\n2. Click on Locations'\n3. Scroll down to location with the tag\n4. See error\n\n**Expected behavior**\nThe \"Has child locations\" tag should be properly visible similar to other tags\n\n**Screenshots**\n\n\u003Cimg width=\"466\" height=\"918\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/16b060f4-6eb1-44c0-ba69-699493f08455\" />\n\n**Desktop (please complete the following information):**\n\n- OS: [e.g. iOS]\n- Browser [e.g. chrome, safari]\n- Version [e.g. 22]\n\n**Smartphone (please complete the following information):**\n\n- Device: [e.g. iPhone6]\n- OS: [e.g. iOS8.1]\n- Browser [e.g. stock browser, safari]\n- Version [e.g. 22]\n\n**Additional context**\nAdd any other context about the problem here.\n\n---\n\n### 🚨 DO NOT EDIT BELOW THIS LINE 🚨\n\n### Instructions for Requesting Assignment:\n\nTo request assignment, please clearly outline your solution and timeline by commenting on the issue using the format below:\n\n**Describe your solution clearly:**\nProvide a detailed explanation of your proposed solution, including your approach, key implementation steps, and relevant examples or references. Mention any dependencies, assumptions, or risks you foresee that might affect your timeline or implementation.\n\n**Expected Timeline:**\n- End date: [Expected submission date of a completed Pull Request]\n\n**Additional Context:**\nInclude any other relevant context, links, screenshots, or resources that support your proposed solution.\n\n> 🚨 Your assignment may be unassigned if there is no activity or progress within the stated timeline unless communicated clearly and agreed upon.\n",[3233],{"name":3183,"color":3184},13621,"The tags in locations page are not proper","2025-09-30T11:00:03Z","https://github.com/ohcnetwork/care_fe/issues/13621",0.745941,{"description":3240,"labels":3241,"number":3251,"owner":3172,"repository":3173,"state":3186,"title":3252,"updated_at":3253,"url":3254,"score":3255},"**Describe the bug**\nName in sidebar and tab are mismatching for encounter.\n\n\n**To Reproduce**\nSteps to reproduce the behavior:\n\n1. Go to '...'\n2. Click on '....'\n3. Scroll down to '....'\n4. See error\n\n**Expected behavior**\nTab name should be 'Encounters' instead of 'Patients'\n\n\n**Screenshots**\n\nhttps://github.com/user-attachments/assets/03b0b6c7-dfdd-49ec-9a24-61613f6af7bd\n\n**Desktop (please complete the following information):**\n\n- OS: [e.g. iOS]\n- Browser [e.g. chrome, safari]\n- Version [e.g. 22]\n\n**Smartphone (please complete the following information):**\n\n- Device: [e.g. iPhone6]\n- OS: [e.g. iOS8.1]\n- Browser [e.g. stock browser, safari]\n- Version [e.g. 22]\n\n**Additional context**\nAdd any other context about the problem here.\n\n---\n\n### 🚨 DO NOT EDIT BELOW THIS LINE 🚨\n\n### Instructions for Requesting Assignment:\n\nTo request assignment, please clearly outline your solution and timeline by commenting on the issue using the format below:\n\n**Describe your solution clearly:**\nProvide a detailed explanation of your proposed solution, including your approach, key implementation steps, and relevant examples or references. Mention any dependencies, assumptions, or risks you foresee that might affect your timeline or implementation.\n\n**Expected Timeline:**\n- End date: [Expected submission date of a completed Pull Request]\n\n**Additional Context:**\nInclude any other relevant context, links, screenshots, or resources that support your proposed solution.\n\n> 🚨 Your assignment may be unassigned if there is no activity or progress within the stated timeline unless communicated clearly and agreed upon.\n",[3242,3245,3248],{"name":3243,"color":3244},"good first issue","7057ff",{"name":3246,"color":3247},"question","d876e3",{"name":3249,"color":3250},"needs-triage","ededed",12649,"Bug: Active name in sidebar and Tab name is mismatching for Encounter","2025-06-20T09:13:31Z","https://github.com/ohcnetwork/care_fe/issues/12649",0.745971,{"description":3257,"labels":3258,"number":3261,"owner":3172,"repository":3173,"state":3186,"title":3262,"updated_at":3263,"url":3264,"score":3265},"**Describe the bug**\nIn mobile view, the config card shows incorrect line breaks and awkward spacing not only for the name, but also for the status badge (\"Inactive\") and the description text. This leads to poor readability and inconsistent UI.\n\n**To Reproduce**\nSteps to reproduce the behavior:\n\n1. Go to Admin Dashboard\n2. Click on Patient Identifier Config\n3. Scroll down to Card with detials\n4. See error\n\n**Expected behavior**\nThe config card should display the name, status badge, and description in a clear, continuous layout with proper wrapping and spacing, maintaining consistency regardless of screen size.\n\n**Screenshots**\n\n\n\n**Desktop (please complete the following information):**\n\n- OS: [e.g. iOS]\n- Browser [e.g. chrome, safari]\n- Version [e.g. 22]\n\n**Smartphone (please complete the following information):**\n\n- Device: [e.g. iPhone6]\n- OS: [e.g. iOS8.1]\n- Browser [e.g. stock browser, safari]\n- Version [e.g. 22]\n\n**Additional context**\nThe ValueSet preview has consistent UI even for small screens, replicaitng it here could solve this issue\n\n---\n\n### 🚨 DO NOT EDIT BELOW THIS LINE 🚨\n\n### Instructions for Requesting Assignment:\n\nTo request assignment, please clearly outline your solution and timeline by commenting on the issue using the format below:\n\n**Describe your solution clearly:**\nProvide a detailed explanation of your proposed solution, including your approach, key implementation steps, and relevant examples or references. Mention any dependencies, assumptions, or risks you foresee that might affect your timeline or implementation.\n\n**Expected Timeline:**\n- End date: [Expected submission date of a completed Pull Request]\n\n**Additional Context:**\nInclude any other relevant context, links, screenshots, or resources that support your proposed solution.\n\n> 🚨 Your assignment may be unassigned if there is no activity or progress within the stated timeline unless communicated clearly and agreed upon.\n",[3259,3260],{"name":3246,"color":3247},{"name":3249,"color":3250},13500,"Patient Identifier Config Card Name Breaks Incorrectly in Mobile View","2025-08-25T14:46:52Z","https://github.com/ohcnetwork/care_fe/issues/13500",0.7473815,{"description":3267,"labels":3268,"number":3270,"owner":3172,"repository":3173,"state":3186,"title":3271,"updated_at":3272,"url":3273,"score":3274},"**Describe the bug**\n1. Status button and edit button are not aligned properly.\n2. View Details button of Product Knowledge Container and Charge Item Container is overflowing in Mobile View UI\n\n\u003Cimg width=\"653\" height=\"527\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/fd402859-8d00-40c1-90f4-ee1b867b3b6d\" />\n\n**To Reproduce**\nSteps to reproduce the behavior:\n\n1. Go to '...'\n2. Click on '....'\n3. Scroll down to '....'\n4. See error\n\n**Expected behavior**\nA clear and concise description of what you expected to happen.\n\n**Screenshots**\nIf applicable, add screenshots to help explain your problem.\n\n**Desktop (please complete the following information):**\n\n- OS: [e.g. iOS]\n- Browser [e.g. chrome, safari]\n- Version [e.g. 22]\n\n**Smartphone (please complete the following information):**\n\n- Device: [e.g. iPhone6]\n- OS: [e.g. iOS8.1]\n- Browser [e.g. stock browser, safari]\n- Version [e.g. 22]\n\n**Additional context**\nAdd any other context about the problem here.\n\n---\n\n### 🚨 DO NOT EDIT BELOW THIS LINE 🚨\n\n### Instructions for Requesting Assignment:\n\nTo request assignment, please clearly outline your solution and timeline by commenting on the issue using the format below:\n\n**Describe your solution clearly:**\nProvide a detailed explanation of your proposed solution, including your approach, key implementation steps, and relevant examples or references. Mention any dependencies, assumptions, or risks you foresee that might affect your timeline or implementation.\n\n**Expected Timeline:**\n- End date: [Expected submission date of a completed Pull Request]\n\n**Additional Context:**\nInclude any other relevant context, links, screenshots, or resources that support your proposed solution.\n\n> 🚨 Your assignment may be unassigned if there is no activity or progress within the stated timeline unless communicated clearly and agreed upon.\n",[3269],{"name":3183,"color":3184},13146,"Improve UI of Product page","2025-09-25T10:42:47Z","https://github.com/ohcnetwork/care_fe/issues/13146",0.74814665,["Reactive",3276],{},["Set"],["ShallowReactive",3279],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$f2D0tt_biaRC2RanVp-WjX4dRXzkvxR8PZBs9Oy0D15I":-1},"/ohcnetwork/care_fe/13668"]