diff --git a/lawnchair/res/values/strings.xml b/lawnchair/res/values/strings.xml
index 11f2f32e41..394f899a66 100644
--- a/lawnchair/res/values/strings.xml
+++ b/lawnchair/res/values/strings.xml
@@ -228,6 +228,7 @@
Material 3 Expressive
Enable Material 3 Expressive changes in workspace
+ Customizable folder shape
Folder
App
diff --git a/lawnchair/src/app/lawnchair/ui/preferences/destinations/ExperimentalFeaturesPreferences.kt b/lawnchair/src/app/lawnchair/ui/preferences/destinations/ExperimentalFeaturesPreferences.kt
index 991c379798..9426bd1759 100644
--- a/lawnchair/src/app/lawnchair/ui/preferences/destinations/ExperimentalFeaturesPreferences.kt
+++ b/lawnchair/src/app/lawnchair/ui/preferences/destinations/ExperimentalFeaturesPreferences.kt
@@ -83,7 +83,7 @@ fun ExperimentalFeaturesPreferences(
val enabled = enableFolderIconShapeCustomizationAdapter.state.value
NavigationActionPreference(
- label = stringResource(id = R.string.folder_shape_label),
+ label = stringResource(id = R.string.experimental_folder_shape_modify_label),
destination = if (enabled) GeneralIconShape(ShapeRoute.FOLDER_SHAPE) else null,
subtitle = folderIconShapeSubtitle,
endWidget = {
@@ -200,7 +200,6 @@ fun ExperimentalFeaturesPreferences(
stringResource(R.string.internal_label),
stringResource(R.string.internal_description),
) {
- // Lawnchair-TODO(Merge): Investigate Always Reload Icons
Item {
SwitchPreference(
adapter = alwaysReloadIconsAdapter,