Skip to content

Commit

Permalink
fixed a tiny bug discovered after rollout
Browse files Browse the repository at this point in the history
  • Loading branch information
bmaroti9 committed May 5, 2024
1 parent 9679d82 commit dad4118
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ android {
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
minSdkVersion flutter.minSdkVersion
targetSdkVersion flutter.targetSdkVersion
versionCode 29
versionName "2.3.2"
versionCode 31
versionName "2.3.4"
}

buildTypes {
Expand Down
2 changes: 1 addition & 1 deletion lib/search_screens.dart
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Widget searchBar(Color color, List<String> recommend,

onQueryChanged: (query) async {
isEditing = false;
var result = await getRecommend(query, settings["Search Provider"], settings);
var result = await getRecommend(query, settings["Search provider"], settings);
updateRec(result);
},
onSubmitted: (submission) {
Expand Down
2 changes: 1 addition & 1 deletion lib/settings_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ Widget settingsMain(Color color, Map<String, String> settings, Function updatePa
child: Center(
child: Container(
constraints: BoxConstraints(maxWidth: 800),
padding: EdgeInsets.all(5),
padding: EdgeInsets.all(2),
child: Column(
children: [
SizedBox(height: 15,),
Expand Down

0 comments on commit dad4118

Please sign in to comment.