diff --git a/lib/screens/common_widgets/auth/oauth1_fields.dart b/lib/screens/common_widgets/auth/oauth1_fields.dart index 6b0c4a16..47381d2d 100644 --- a/lib/screens/common_widgets/auth/oauth1_fields.dart +++ b/lib/screens/common_widgets/auth/oauth1_fields.dart @@ -63,35 +63,35 @@ class _OAuth1FieldsState extends State { return Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ - Text( - "Add auth data to", - style: TextStyle( - fontWeight: FontWeight.normal, - fontSize: 14, - ), - ), - SizedBox( - height: 4, - ), - ADPopupMenu( - value: _addAuthDataTo, - values: const [ - ('Request URL / Request Body', 'url'), - ('Request Header', 'header'), - ], - tooltip: "Select where to add API key", - isOutlined: true, - onChanged: (String? newLocation) { - if (newLocation != null) { - setState(() { - _addAuthDataTo = newLocation; - }); + // Text( + // "Add auth data to", + // style: TextStyle( + // fontWeight: FontWeight.normal, + // fontSize: 14, + // ), + // ), + // SizedBox( + // height: 4, + // ), + // ADPopupMenu( + // value: _addAuthDataTo, + // values: const [ + // ('Request URL / Request Body', 'url'), + // ('Request Header', 'header'), + // ], + // tooltip: "Select where to add API key", + // isOutlined: true, + // onChanged: (String? newLocation) { + // if (newLocation != null) { + // setState(() { + // _addAuthDataTo = newLocation; + // }); - _updateOAuth1(); - } - }, - ), - const SizedBox(height: 16), + // _updateOAuth1(); + // } + // }, + // ), + // const SizedBox(height: 16), AuthTextField( readOnly: widget.readOnly, controller: _consumerKeyController,