deer social fork for personal usage. but you might see a use idk. github mirror
4
fork

Configure Feed

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

fix: IS_DEV never being able to evaluate to false

+3 -1
+3 -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 = 19 + process.env.EXPO_PUBLIC_ENV === 'development' || 20 + (!IS_TESTFLIGHT && !IS_PRODUCTION) 19 21 20 22 const ASSOCIATED_DOMAINS = [ 21 23 'applinks:bsky.app',