aboutsummaryrefslogtreecommitdiff
path: root/newspipe/web/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/web/forms.py')
-rw-r--r--newspipe/web/forms.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/newspipe/web/forms.py b/newspipe/web/forms.py
index 3eac8e6b..e804890c 100644
--- a/newspipe/web/forms.py
+++ b/newspipe/web/forms.py
@@ -259,7 +259,6 @@ class ProfileForm(FlaskForm):
automatic_crawling = BooleanField(lazy_gettext("Automatic crawling"), default=True)
bio = TextAreaField(lazy_gettext("Bio"))
webpage = URLField(lazy_gettext("Webpage"))
- twitter = URLField(lazy_gettext("Twitter"))
is_public_profile = BooleanField(lazy_gettext("Public profile"), default=True)
submit = SubmitField(lazy_gettext("Save"))
bgstack15