From 755c68947a71e4d806a92cfe35575b20c35f3fb2 Mon Sep 17 00:00:00 2001 From: Rifat Azad Date: Thu, 26 Dec 2024 21:34:21 +0600 Subject: [PATCH] manager: fixed missing opening bracket --- .../java/com/rifsxd/ksunext/ui/screen/ExecuteModuleAction.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manager/app/src/main/java/com/rifsxd/ksunext/ui/screen/ExecuteModuleAction.kt b/manager/app/src/main/java/com/rifsxd/ksunext/ui/screen/ExecuteModuleAction.kt index eb668c0d..a056b004 100644 --- a/manager/app/src/main/java/com/rifsxd/ksunext/ui/screen/ExecuteModuleAction.kt +++ b/manager/app/src/main/java/com/rifsxd/ksunext/ui/screen/ExecuteModuleAction.kt @@ -118,7 +118,7 @@ fun ExecuteModuleActionScreen(navigator: DestinationsNavigator, moduleId: String floatingActionButton = { if (!isActionRunning) { ExtendedFloatingActionButton( - text = Text(text = stringResource(R.string.close)) }, + text = { Text(text = stringResource(R.string.close)) }, icon = { Icon(Icons.Filled.Close, contentDescription = null) }, onClick = { navigator.popBackStack()