Need uppercase C,else it'll be true instead of false

🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️
This commit is contained in:
Lim Chee Aun 2024-03-07 16:33:56 +08:00
parent 061d769901
commit 306a96eec3
4 changed files with 4 additions and 4 deletions

View file

@ -73,7 +73,7 @@ const SearchForm = forwardRef((props, ref) => {
autocomplete="off" autocomplete="off"
autocorrect="off" autocorrect="off"
autocapitalize="off" autocapitalize="off"
spellcheck="false" spellCheck="false"
onSearch={(e) => { onSearch={(e) => {
if (!e.target.value) { if (!e.target.value) {
setSearchParams({}); setSearchParams({});

View file

@ -671,7 +671,7 @@ function ShortcutForm({
} }
autocorrect="off" autocorrect="off"
autocapitalize="off" autocapitalize="off"
spellcheck={false} spellCheck={false}
pattern={pattern} pattern={pattern}
/> />
{currentType === 'hashtag' && {currentType === 'hashtag' &&

View file

@ -285,7 +285,7 @@ function Hashtags({ media: mediaView, columnMode, ...props }) {
required required
autocorrect="off" autocorrect="off"
autocapitalize="off" autocapitalize="off"
spellcheck={false} spellCheck={false}
// no spaces, no hashtags // no spaces, no hashtags
pattern="[^#][^\s#]+[^#]" pattern="[^#][^\s#]+[^#]"
disabled={reachLimit} disabled={reachLimit}

View file

@ -160,7 +160,7 @@ function Login() {
autocorrect="off" autocorrect="off"
autocapitalize="off" autocapitalize="off"
autocomplete="off" autocomplete="off"
spellcheck={false} spellCheck={false}
placeholder="instance domain" placeholder="instance domain"
onInput={(e) => { onInput={(e) => {
setInstanceText(e.target.value); setInstanceText(e.target.value);