diff --git a/app.config.ts b/app.config.ts index ad3e82c..3562e0a 100644 --- a/app.config.ts +++ b/app.config.ts @@ -70,10 +70,18 @@ export default ({config}: ConfigContext): ExpoConfig => ({ 'expo-localization', [ 'expo-splash-screen', + // https://github.com/expo/expo/issues/32515#issuecomment-2533398853 { image: './assets/icon.png', backgroundColor: '#333333', imageWidth: 200, + dark: {backgroundColor: '#1B1B1B'}, + ios: { + resizeMode: 'cover', + image: './assets/splash.png', + }, + // iOS only + enableFullScreenImage_legacy: true, }, ], ], diff --git a/src/apis/slackQueries.ts b/src/apis/slackQueries.ts index 121101f..874a354 100644 --- a/src/apis/slackQueries.ts +++ b/src/apis/slackQueries.ts @@ -2,8 +2,6 @@ import {Post} from '../types'; const SLACK_WEBHOOK_URL = process.env.SLACK_WEBHOOK_URL; -console.log('SLACK_WEBHOOK_URL:', SLACK_WEBHOOK_URL); - const truncateText = (text: string, maxLength: number) => { if (text.length > maxLength) { return text.slice(0, maxLength) + '...';