mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-28 18:40:34 -05:00
✨ Promoting OpenId as default feature (#4903)
* Removed OpenId feature flag * linter * md * wrong author
This commit is contained in:
@@ -21,9 +21,8 @@ export function AuthSettings() {
|
||||
const multiuserEnabled = useMultiuserEnabled();
|
||||
const loginMethod = useLoginMethod();
|
||||
const dispatch = useDispatch();
|
||||
const openidAuthFeatureFlag = useFeatureFlag('openidAuth');
|
||||
|
||||
return openidAuthFeatureFlag === true ? (
|
||||
return (
|
||||
<Setting
|
||||
primaryAction={
|
||||
<>
|
||||
@@ -103,5 +102,5 @@ export function AuthSettings() {
|
||||
</Trans>
|
||||
</Text>
|
||||
</Setting>
|
||||
) : null;
|
||||
);
|
||||
}
|
||||
|
||||
@@ -106,12 +106,6 @@ export function ExperimentalFeatures() {
|
||||
>
|
||||
<Trans>Context menus</Trans>
|
||||
</FeatureToggle>
|
||||
<FeatureToggle
|
||||
flag="openidAuth"
|
||||
feedbackLink="https://github.com/actualbudget/actual/issues/4029"
|
||||
>
|
||||
<Trans>OpenID authentication method</Trans>
|
||||
</FeatureToggle>
|
||||
<FeatureToggle
|
||||
flag="pluggyAiBankSync"
|
||||
feedbackLink="https://github.com/actualbudget/actual/pull/4049"
|
||||
|
||||
@@ -7,7 +7,6 @@ const DEFAULT_FEATURE_FLAG_STATE: Record<FeatureFlag, boolean> = {
|
||||
goalTemplatesUIEnabled: false,
|
||||
actionTemplating: false,
|
||||
contextMenus: false,
|
||||
openidAuth: false,
|
||||
pluggyAiBankSync: false,
|
||||
};
|
||||
|
||||
|
||||
1
packages/loot-core/src/types/prefs.d.ts
vendored
1
packages/loot-core/src/types/prefs.d.ts
vendored
@@ -3,7 +3,6 @@ export type FeatureFlag =
|
||||
| 'goalTemplatesUIEnabled'
|
||||
| 'actionTemplating'
|
||||
| 'contextMenus'
|
||||
| 'openidAuth'
|
||||
| 'pluggyAiBankSync';
|
||||
|
||||
/**
|
||||
|
||||
6
upcoming-release-notes/4903.md
Normal file
6
upcoming-release-notes/4903.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
category: Maintenance
|
||||
authors: [lelemm]
|
||||
---
|
||||
|
||||
Promoting OpenId as default feature
|
||||
Reference in New Issue
Block a user