fix wrong text for close button in batch download page

This commit is contained in:
AmirHossein Abdolmotallebi 2024-11-03 23:31:05 +03:30
parent dc228e7336
commit c80a18f282

View File

@ -196,7 +196,7 @@ fun BatchDownload(
onClick = component::confirm
)
Spacer(Modifier.width(8.dp))
ActionButton(myStringResource(Res.string.ok), onClick = component.onClose)
ActionButton(myStringResource(Res.string.close), onClick = component.onClose)
}
}
}