fix: add nocorrect to atproto auth#987
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
2 Skipped Deployments
|
📝 WalkthroughWalkthroughThe authentication modal component was refactored to consolidate input attribute configuration. Three separate input attributes— 🚥 Pre-merge checks | ❌ 1❌ Failed checks (1 warning)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches🧪 Generate unit tests (beta)
Comment |
There was a problem hiding this comment.
Actionable comments posted: 0
Caution
Some comments are outside the diff and can’t be posted inline due to platform limitations.
⚠️ Outside diff range comments (1)
app/components/Header/AuthModal.client.vue (1)
56-63:⚠️ Potential issue | 🟠 MajorDefine or import
noCorrectbefore binding it.
v-bind="noCorrect"references an identifier that doesn’t exist in the script block, which will break the template. Please add a local const or import the object.🔧 Proposed fix
<script setup lang="ts"> import { useAtproto } from '~/composables/atproto/useAtproto' import { authRedirect } from '~/utils/atproto/helpers' const handleInput = shallowRef('') +const noCorrect = { + autocomplete: 'off', + autocorrect: 'off', + autocapitalize: 'off', + spellcheck: 'false', +} as const + const { user, logout } = useAtproto()
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
No description provided.