File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
feature/settings/src/main/java/com/google/samples/apps/nowinandroid/feature/settings Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -250,29 +250,29 @@ private fun LinksPanel() {
250250 space = 16 .dp,
251251 alignment = Alignment .CenterHorizontally ,
252252 ),
253- modifier = Modifier .fillMaxWidth()
253+ modifier = Modifier .fillMaxWidth(),
254254 ) {
255255 val uriHandler = LocalUriHandler .current
256256 NiaTextButton (
257- onClick = { uriHandler.openUri(PRIVACY_POLICY_URL ) }
257+ onClick = { uriHandler.openUri(PRIVACY_POLICY_URL ) },
258258 ) {
259259 Text (text = stringResource(string.privacy_policy))
260260 }
261261 val context = LocalContext .current
262262 NiaTextButton (
263263 onClick = {
264264 context.startActivity(Intent (context, OssLicensesMenuActivity ::class .java))
265- }
265+ },
266266 ) {
267267 Text (text = stringResource(string.licenses))
268268 }
269269 NiaTextButton (
270- onClick = { uriHandler.openUri(BRAND_GUIDELINES_URL ) }
270+ onClick = { uriHandler.openUri(BRAND_GUIDELINES_URL ) },
271271 ) {
272272 Text (text = stringResource(string.brand_guidelines))
273273 }
274274 NiaTextButton (
275- onClick = { uriHandler.openUri(FEEDBACK_URL ) }
275+ onClick = { uriHandler.openUri(FEEDBACK_URL ) },
276276 ) {
277277 Text (text = stringResource(string.feedback))
278278 }
You can’t perform that action at this time.
0 commit comments