Skip to content

Commit

Permalink
chore: Fixed the github workflow pull request template (#40)
Browse files Browse the repository at this point in the history
* chore: Fixed the github workflow pull request template

* ingore: Formatting
  • Loading branch information
morten-andersen authored Dec 20, 2024
1 parent 2daeecc commit 78cb968
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ jobs:
secrets:
GHL_USERNAME: ${{ secrets.GHL_USERNAME }}
GHL_PASSWORD: ${{ secrets.GHL_PASSWORD }}
SLACK_APP_TOKEN: ${{ secrets.SLACK_APP_TOKEN }}
static-code-analysis:
name: Static Code Analysis
runs-on: ubuntu-latest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ fun ApplicationScope.MainWindow() {
setupAppThemeMenu(appThemeViewModel)

MaterialTheme(
colors = appThemeViewModel.getColors(),
colors = appThemeViewModel.getColors()
) {
when (navigationViewModel.currentScreen) {
is NavigationViewModel.Screen.ChargePoints -> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import kotlinx.coroutines.flow.collectLatest

@Composable
fun ChargePointsScreen() {

var searchQuery by remember {
mutableStateOf("")
}
Expand Down Expand Up @@ -173,7 +172,6 @@ private fun ChargePointDAO.matchesSearchQuery(query: String): Boolean {
return name.contains(query, ignoreCase = true) || identity.contains(query, ignoreCase = true)
}


@Composable
private fun RowScope.AddChargePointButton() {
val screenViewModel: NavigationViewModel by injectAnywhere()
Expand All @@ -184,7 +182,7 @@ private fun RowScope.AddChargePointButton() {
.height(56.dp)
.align(Alignment.CenterVertically)
.padding(
end = 8.dp,
end = 8.dp
),
onClick = {
screenViewModel.navigateTo(
Expand Down

0 comments on commit 78cb968

Please sign in to comment.