| 6 | import Loading from '/components/Loading.ts'; |
| 7 | |
| 8 | interface SettingsProps { |
| 9 | formData: Record<string, any>; |
| 10 | error?: { |
| 11 | title: string; |
| 12 | message: string; |
| 13 | }; |
| 14 | notice?: { |
| 15 | title: string; |
| 16 | message: string; |
| 17 | }; |
| 18 | currency?: SupportedCurrencySymbol; |
| 19 | timezoneId?: string; |
| 20 | isExpensesAppEnabled: boolean; |
| 21 | isMultiFactorAuthEnabled: boolean; |
| 22 | isCalendarAppEnabled: boolean; |
| 23 | helpEmail: string; |
| 24 | user: { |
| 25 | extra: Pick<User['extra'], 'multi_factor_auth_methods'>; |
| 26 | }; |
| 27 | } |
| 28 | |
| 29 | export type Action = |
| 30 | | 'change-email' |
nothing calls this directly
no outgoing calls
no test coverage detected