diff --git a/feature/about/src/commonMain/composeResources/values-ja/about_strings.xml b/feature/about/src/commonMain/composeResources/values-ja/about_strings.xml
index 3e8d0a75f..c3e81b146 100644
--- a/feature/about/src/commonMain/composeResources/values-ja/about_strings.xml
+++ b/feature/about/src/commonMain/composeResources/values-ja/about_strings.xml
@@ -18,5 +18,4 @@
YouTube
X
Medium
- The Android robot is reproduced or modified from work created and shared by Google and used according to terms described in the Creative Commons 3.0 Attribution License.
diff --git a/feature/about/src/commonMain/kotlin/io/github/droidkaigi/confsched/about/section/AboutFooterLinks.kt b/feature/about/src/commonMain/kotlin/io/github/droidkaigi/confsched/about/section/AboutFooterLinks.kt
index c7e7b1e88..1e699a41f 100644
--- a/feature/about/src/commonMain/kotlin/io/github/droidkaigi/confsched/about/section/AboutFooterLinks.kt
+++ b/feature/about/src/commonMain/kotlin/io/github/droidkaigi/confsched/about/section/AboutFooterLinks.kt
@@ -79,14 +79,6 @@ fun AboutFooterLinks(
)
}
Spacer(modifier = Modifier.height(8.dp))
- Text(
- modifier = Modifier.padding(horizontal = 12.dp),
- text = stringResource(AboutRes.string.license_description),
- style = MaterialTheme.typography.labelSmall,
- textAlign = TextAlign.Center,
- color = if (isSystemInDarkTheme()) licenseDescriptionDark else licenseDescriptionLight,
- )
- Spacer(modifier = Modifier.height(8.dp))
}
}