From 84fb1b7f97af7cdcaac1049d2c843c421d50539a Mon Sep 17 00:00:00 2001 From: dan Date: Tue, 5 Nov 2024 22:27:36 +0000 Subject: Update Reanimated (#6126) * Update Reanimated * Fix types * Fix Reanimated value access warnings * Fix types --- src/state/shell/shell-layout.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/state/shell/shell-layout.tsx') diff --git a/src/state/shell/shell-layout.tsx b/src/state/shell/shell-layout.tsx index a58ba851c..39f69cfff 100644 --- a/src/state/shell/shell-layout.tsx +++ b/src/state/shell/shell-layout.tsx @@ -12,12 +12,20 @@ const stateContext = React.createContext({ addListener() {}, removeListener() {}, modify() {}, + get() { + return 0 + }, + set() {}, }, footerHeight: { value: 0, addListener() {}, removeListener() {}, modify() {}, + get() { + return 0 + }, + set() {}, }, }) -- cgit 1.4.1