Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

adjust `app.config.js` to prevent development manifest error (#3413)

authored by

Hailey and committed by
GitHub
a6babace cd29dba7

+9 -5
+9 -5
app.config.js
··· 130 130 // TestFlight builds 131 131 enabled: IS_TESTFLIGHT, 132 132 fallbackToCacheTimeout: 30000, 133 - codeSigningCertificate: './code-signing/certificate.pem', 134 - codeSigningMetadata: { 135 - keyid: 'main', 136 - alg: 'rsa-v1_5-sha256', 137 - }, 133 + codeSigningCertificate: IS_TESTFLIGHT 134 + ? './code-signing/certificate.pem' 135 + : undefined, 136 + codeSigningMetadata: IS_TESTFLIGHT 137 + ? { 138 + keyid: 'main', 139 + alg: 'rsa-v1_5-sha256', 140 + } 141 + : undefined, 138 142 checkAutomatically: 'NEVER', 139 143 channel: UPDATES_CHANNEL, 140 144 },