fix: add native fallback for sheet/controller subpath to fix Select on native

Metro resolves @tamagui/sheet/controller via filesystem (controller/index.cjs)
instead of package exports, which was loading the web CJS version instead of
the native version, causing a SheetControllerContext mismatch between Select
and Sheet components.
This commit is contained in:
natew
2026-02-09 22:45:00 -10:00
parent 5b83447a9d
commit 9ad65c1de5
+1
View File
@@ -0,0 +1 @@
Object.assign(module.exports, require('../dist/cjs/controller.native.js'))