diff options
author | Yarden Shoham <git@yardenshoham.com> | 2024-02-17 19:51:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-17 18:51:35 +0100 |
commit | 3da2c63354eb3804c7aec3c688b066b044f2c30e (patch) | |
tree | 89c1af47ea519afaee8461b4e7609f0e426e84ed /web_src/js/index.js | |
parent | 1d275c1748a75a01c270f5c306c5248808016aba (diff) | |
download | gitea-3da2c63354eb3804c7aec3c688b066b044f2c30e.tar.gz gitea-3da2c63354eb3804c7aec3c688b066b044f2c30e.zip |
Remove unneccesary `initUserAuthLinkAccountView` from "link account" page (#29217)
Signed-off-by: Yarden Shoham <git@yardenshoham.com>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Diffstat (limited to 'web_src/js/index.js')
-rw-r--r-- | web_src/js/index.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/web_src/js/index.js b/web_src/js/index.js index 078f9fc9df..117279c3c4 100644 --- a/web_src/js/index.js +++ b/web_src/js/index.js @@ -23,7 +23,7 @@ import {initFindFileInRepo} from './features/repo-findfile.js'; import {initCommentContent, initMarkupContent} from './markup/content.js'; import {initPdfViewer} from './render/pdf.js'; -import {initUserAuthLinkAccountView, initUserAuthOauth2} from './features/user-auth.js'; +import {initUserAuthOauth2} from './features/user-auth.js'; import { initRepoIssueDue, initRepoIssueReferenceRepositorySearch, @@ -178,7 +178,6 @@ onDomReady(() => { initCommitStatuses(); initCaptcha(); - initUserAuthLinkAccountView(); initUserAuthOauth2(); initUserAuthWebAuthn(); initUserAuthWebAuthnRegister(); |