Skip to content

Commit 9ce5f5c

Browse files
committedNov 16, 2023
make a few changes
1 parent c3b044a commit 9ce5f5c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed
 
File renamed without changes.

‎.github/ISSUE_TEMPLATE/CLIMA_BUG_REPORT.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: 🐞 Bug Report
2-
description: File a bug report
3-
title: "[Bug]: <Title>"
4-
labels: ["feature", "triage"]
2+
description: Issue something wrong
3+
title: "[BUG]: <Title>"
4+
labels: ["bug", "triage"]
55
assignees: ["moha-b"]
66
body:
77
- type: textarea

‎.github/ISSUE_TEMPLATE/CLIMA_FEATURE_REQUEST.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: 🌟 Feature Request
22
description: Submit a feature request
3-
title: "[Feature]: <title>"
3+
title: "[FEATURE]: <title>"
44
labels: ["feature", "triage"]
55
assignees: ["moha-b"]
66
body:

‎lib/app/app.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class MyApp extends StatelessWidget {
3535
body: Center(child: CircularProgressIndicator()),
3636
);
3737
} else if (state is ConnectedSuccess) {
38-
return LandingScreen();
38+
return const LandingScreen();
3939
} else {
4040
return const Scaffold(
4141
body: StateWidget(

0 commit comments

Comments
 (0)
Please sign in to comment.