Only show alert if user typed something
This commit is contained in:
parent
ccdb8d144c
commit
d4a6aa2d3b
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ function Public({ local, ...props }) {
|
||||||
'Enter a new instance e.g. "mastodon.social"',
|
'Enter a new instance e.g. "mastodon.social"',
|
||||||
);
|
);
|
||||||
if (!/\./.test(newInstance)) {
|
if (!/\./.test(newInstance)) {
|
||||||
alert('Invalid instance');
|
if (newInstance) alert('Invalid instance');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (newInstance) {
|
if (newInstance) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue