about summary refs log tree commit diff
path: root/src/view/com/modals/ChangeEmail.tsx
Commit message (Collapse)AuthorAgeFilesLines
* Leverage jsx transform to remove unnecessary react imports and update eslint ↵Paul Coroneos2024-11-191-1/+1
| | | | | | | | | config (#6516) * update eslint config with jsx runtime * leverage jsx transform to remove unnecessary react imports and update eslint config * run yarn lint --fix to remove eslint disables related to react/prop-types that is now disabled
* Sort imports (#6009)dan2024-10-291-5/+5
| | | | | * Mark import sort/order/style rules as error * npm run lint -- --fix
* Replace getAgent() with reading agent (#4243)dan2024-05-281-6/+6
| | | | | * Replace getAgent() with agent * Replace {agent} with agent
* Replace updateCurrentAccount() with refreshSession() (#3910)dan2024-05-081-10/+3
| | | Replace updateCurrentAccount() with resumeSession()
* [Session] Add `useAgent` hook and replace (#3706)Eric Bailey2024-04-251-11/+13
| | | | | | | | | | | * Hook it up * Memoize getAgent method * Use one shared reference --------- Co-authored-by: Dan Abramov <dan.abramov@gmail.com>
* Internationalize more strings (#2440)Stanislas Signoud2024-01-091-3/+3
| | | Co-authored-by: Ansh <anshnanda10@gmail.com>
* Improvements to persisted state migration (#2098)Eric Bailey2023-12-051-2/+2
| | | | | | | | | | | * Fix session email/emailConfirmed types, update usage for safer access * Handle fallback better, better errors * Better handling, add test * Add test for default data * Remove fallback, not needed, update logs
* Fix some type errors (#1952)Eric Bailey2023-11-171-1/+3
| | | | | * Fix some low-hanging type errors * Override scrollRef types on profile
* Move the current agent to a global and reset RQ queries on agent change (#1946)Paul Frazee2023-11-161-5/+5
|
* Remove deprecated models and mobx usage (react-query refactor) (#1934)Paul Frazee2023-11-161-3/+2
| | | | | | | | | | | | | | | | | | | | | * Update login page to use service query * Update modal to use session instead of store * Move image sizes cache off store * Update settings to no longer use store * Update link-meta fetch to use agent instead of rootstore * Remove deprecated resolveName() * Delete deprecated link-metas cache * Delete deprecated posts cache * Delete all remaining mobx models, including the root store * Strip out unused mobx observer wrappers
* Web login/signup and shellEric Bailey2023-11-091-13/+12
|
* Internationalization & localization (#1822)Ansh2023-11-091-19/+24
| | | | | | | | | | | | | | | | | | | | | | | | | * install and setup lingui * setup dynamic locale activation and async loading * first pass of automated replacement of text messages * add some more documentaton * fix nits * add `es` and `hi`locales for testing purposes * make accessibilityLabel localized * compile and extract new messages * fix merge conflicts * fix eslint warning * change instructions from sending email to opening PR * fix comments
* Add modal state provider, replace usage except methods (#1833)Eric Bailey2023-11-081-3/+5
| | | | | | | | | | | | | * Add modal state provider, replace usage except methods * Replace easy spots * Fix sticky spots * Replace final usages * Memorize context objects * Add more warnings
* Fix keyboard double pad issue in email change & verify modals (#1664)Paul Frazee2023-10-101-129/+115
|
* Email verification and change flows (#1560)Paul Frazee2023-09-281-0/+280
* fix 'Reposted by' text overflow * Add email verification flow * Implement change email flow * Add verify email reminder on load * Bump @atproto/api@0.6.20 * Trim the inputs * Accessibility fixes * Fix typo * Fix: include the day in the sharding check * Update auto behaviors * Update yarn.lock * Temporary error message --------- Co-authored-by: Eric Bailey <git@esb.lol>