Drop accidental eslint dependency (#11460)

This commit is contained in:
Samuel Newman
2026-08-14 10:21:52 +03:00
committed by GitHub
parent afb3cdc26f
commit 70195d7059
62 changed files with 197 additions and 483 deletions
+1 -6
View File
@@ -33,12 +33,7 @@ export type OnPostSuccessData =
| undefined
export type ComposerLogContext =
| 'Fab'
| 'PostReply'
| 'QuotePost'
| 'ProfileFeed'
| 'Deeplink'
| 'Other'
'Fab' | 'PostReply' | 'QuotePost' | 'ProfileFeed' | 'Deeplink' | 'Other'
export interface ComposerOpts {
replyTo?: ComposerOptsPostRef
+1 -5
View File
@@ -27,11 +27,7 @@ type Controls = {
* The did of the account to populate the login form with.
*/
requestedAccount?:
| (string & {})
| 'none'
| 'new'
| 'starterpack'
| 'groupchat'
(string & {}) | 'none' | 'new' | 'starterpack' | 'groupchat'
}) => void
/**
* Clears the requested account so that next time the logged out view is
+1 -3
View File
@@ -40,9 +40,7 @@ export interface Follow10ProgressGuide extends BaseProgressGuide {
}
export type ProgressGuide =
| Like10AndFollow7ProgressGuide
| Follow10ProgressGuide
| undefined
Like10AndFollow7ProgressGuide | Follow10ProgressGuide | undefined
const ProgressGuideContext = createContext<ProgressGuide>(undefined)
ProgressGuideContext.displayName = 'ProgressGuideContext'