Unpin the foundation-layout dependency

This fixes issues in the IDE where it complains it canno resolve certain
Modifier references and cannot access some classes due to missing of
conflicting dependencies.

Test: manual - verified that those issues were resolved and we get
content assist
Relnote: N/A

Change-Id: I710c1bfb10e81e8ae3391d9892449592c3e64dd2
diff --git a/compose/material3/material3/build.gradle b/compose/material3/material3/build.gradle
index 1a631a7..6fe5660 100644
--- a/compose/material3/material3/build.gradle
+++ b/compose/material3/material3/build.gradle
@@ -38,7 +38,7 @@
         implementation(libs.kotlinStdlibCommon)
         implementation("androidx.activity:activity-compose:1.5.0")
         implementation("androidx.compose.animation:animation-core:1.4.2")
-        implementation("androidx.compose.foundation:foundation-layout:1.4.2")
+        implementation(project(":compose:foundation:foundation-layout"))
         implementation("androidx.compose.ui:ui-util:1.4.2")
         api(project(":compose:foundation:foundation"))
         api("androidx.compose.material:material-icons-core:1.4.2")