Bluesky app fork with some witchin' additions 💫

fix IS_DEV in app config (#9769)

authored by samuel.fm and committed by

GitHub dd7bb1bc d31bc7f3

+1 -1
+1 -1
app.config.js
··· 15 15 16 16 const IS_TESTFLIGHT = process.env.EXPO_PUBLIC_ENV === 'testflight' 17 17 const IS_PRODUCTION = process.env.EXPO_PUBLIC_ENV === 'production' 18 - const IS_DEV = !IS_TESTFLIGHT || !IS_PRODUCTION 18 + const IS_DEV = !IS_TESTFLIGHT && !IS_PRODUCTION 19 19 20 20 const ASSOCIATED_DOMAINS = [ 21 21 'applinks:bsky.app',