diff --git a/lib/screens/profile_editor.dart b/lib/screens/profile_editor.dart index 256ec95..436b54f 100644 --- a/lib/screens/profile_editor.dart +++ b/lib/screens/profile_editor.dart @@ -126,7 +126,7 @@ class _ProfileEditorState extends State { style: const TextStyle(fontWeight: FontWeight.bold, fontSize: 16)), if (widget.profile.editable) TextButton.icon( - onPressed: () => setState(() => _tags.add(const MapEntry('', ''))), + onPressed: () => setState(() => _tags.insert(0, const MapEntry('', ''))), icon: const Icon(Icons.add), label: Text(locService.t('profileEditor.addTag')), ),