Skip to content

Commit c68992e

Browse files
committed
fix(core): Fix ExpoConstantsContext type to use expo_sdk_version
The type definition used 'sdk_version' but the code and tests use 'expo_sdk_version'. Updated the type to match the actual field name being used.
1 parent e71d8b7 commit c68992e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/js/integrations/expoconstants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,6 @@ type ExpoConstantsContext = Partial<{
123123
app_name: string;
124124
app_slug: string;
125125
app_version: string;
126-
sdk_version: string;
126+
expo_sdk_version: string;
127127
eas_project_id: string;
128128
}>;

0 commit comments

Comments
 (0)