[ermine] disable clipping to unblock roller

The flutter roller is failing because of a breaking
API change. This code can be uncommented once the
roll has landed.

Note: this may cause some visual glitches until the roll happens.
Change-Id: Iaca1a3658f8fa5f4d3c4a45d1f8cd2d13631b631
Reviewed-on: https://fuchsia-review.googlesource.com/c/experiences/+/394078
Reviewed-by: Sanjay Chouksey <sanjayc@google.com>
Testability-Review: Sanjay Chouksey <sanjayc@google.com>
Commit-Queue: Chase Latta <chaselatta@google.com>
diff --git a/session_shells/ermine/shell/lib/src/widgets/support/home.dart b/session_shells/ermine/shell/lib/src/widgets/support/home.dart
index fda2746..9606d91 100644
--- a/session_shells/ermine/shell/lib/src/widgets/support/home.dart
+++ b/session_shells/ermine/shell/lib/src/widgets/support/home.dart
@@ -30,7 +30,8 @@
         Expanded(
           child: Stack(
             fit: StackFit.expand,
-            overflow: Overflow.visible,
+            //TODO(53107) uncomment after new API rolls
+            // clipBehavior: Clip.none,
             children: <Widget>[
               // Story Clusters.
               Clusters(model: model),