Fix Disabled Field in Settings

This commit is contained in:
imjainish
2025-08-21 22:39:41 -04:00
parent cb9cd0a43c
commit 1a38222974
+1 -1
View File
@@ -29,7 +29,7 @@ const SettingsURL = ({ HEADING_SX, handleChange, showURL = false }) => {
<Select
name="showURL"
label={t("settingsPage.urlSettings.label")}
value={showURL || ""}
value={showURL == true ? true : false}
onChange={handleChange}
items={[
{ _id: true, name: t("settingsPage.urlSettings.selectEnabled") },