Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix typo in `app-info` (#3863)

authored by

Hailey and committed by
GitHub
91f82025 9b7818d3

+4 -2
+2 -1
src/lib/app-info.ts
··· 6 6 7 7 // This is the commit hash that the current bundle was made from. The user can see the commit hash in the app's settings 8 8 // along with the other version info. Useful for debugging/reporting. 9 - export const BUNDLE_IDENTIFIER = process.env.EXPO_PUBLIC_COMMIT_HASH ?? 'dev' 9 + export const BUNDLE_IDENTIFIER = 10 + process.env.EXPO_PUBLIC_BUNDLE_IDENTIFIER ?? 'dev' 10 11 11 12 // This will always be in the format of YYMMDD, so that it always increases for each build. This should only be used 12 13 // for Statsig reporting and shouldn't be used to identify a specific bundle.
+2 -1
src/lib/app-info.web.ts
··· 4 4 5 5 // This is the commit hash that the current bundle was made from. The user can see the commit hash in the app's settings 6 6 // along with the other version info. Useful for debugging/reporting. 7 - export const BUNDLE_IDENTIFIER = process.env.EXPO_PUBLIC_COMMIT_HASH ?? 'dev' 7 + export const BUNDLE_IDENTIFIER = 8 + process.env.EXPO_PUBLIC_BUNDLE_IDENTIFIER ?? 'dev' 8 9 9 10 // This will always be in the format of YYMMDD, so that it always increases for each build. This should only be used 10 11 // for Statsig reporting and shouldn't be used to identify a specific bundle.