diff --git a/app/w/components/sidebar/components/settings-modal/settings-modal.tsx b/app/w/components/sidebar/components/settings-modal/settings-modal.tsx index 6caad0019..65594ae92 100644 --- a/app/w/components/sidebar/components/settings-modal/settings-modal.tsx +++ b/app/w/components/sidebar/components/settings-modal/settings-modal.tsx @@ -38,67 +38,45 @@ export function SettingsModal({ return ( - - - - Environment Variables - + + + Environment Variables -
-
- {envVars.map((envVar, index) => ( -
-
- - updateEnvVar(index, 'key', e.target.value)} - placeholder="API_KEY" - className="placeholder:text-muted-foreground/50" - /> -
-
- - - updateEnvVar(index, 'value', e.target.value) - } - type="password" - placeholder="Enter value" - className="placeholder:text-muted-foreground/50" - /> -
+
+ {envVars.map((envVar, index) => ( +
+
+ + updateEnvVar(index, 'key', e.target.value)} + placeholder="API_KEY" + />
- ))} -
+
+ + updateEnvVar(index, 'value', e.target.value)} + type="password" + placeholder="Enter value" + /> +
+
+ ))}
-
-