@@ -124,6 +152,23 @@ const AuthSettings: React.FC = () => {
>
)}
+ {/* Autofill Popup Settings Section */}
+
+
+
Autofill popup
+
+
+
+
Version: {AppInfo.VERSION}
diff --git a/browser-extension/src/entrypoints/popup/pages/Settings.tsx b/browser-extension/src/entrypoints/popup/pages/Settings.tsx
index 737a0beff..1b730d2f7 100644
--- a/browser-extension/src/entrypoints/popup/pages/Settings.tsx
+++ b/browser-extension/src/entrypoints/popup/pages/Settings.tsx
@@ -144,11 +144,11 @@ const Settings: React.FC = () => {
onClick={toggleGlobalPopup}
className={`px-4 py-2 rounded-md transition-colors ${
settings.isGloballyEnabled
- ? 'bg-red-500 hover:bg-red-600 text-white'
- : 'bg-green-500 hover:bg-green-600 text-white'
+ ? 'bg-green-500 hover:bg-green-600 text-white'
+ : 'bg-red-500 hover:bg-red-600 text-white'
}`}
>
- {settings.isGloballyEnabled ? 'Disable' : 'Enable'}
+ {settings.isGloballyEnabled ? 'Enabled' : 'Disabled'}