File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
packages/messaging/plugin/src/android Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -30,10 +30,10 @@ export const withExpoPluginFirebaseNotification: ConfigPlugin = config => {
3030const getNotificationConfig = ( config : ExpoConfig ) => {
3131 // Check expo-notifications plugin
3232 if ( config . plugins ) {
33- const expoNotificationsPlugin = config . plugins . find ( plugin =>
34- Array . isArray ( plugin ) && plugin [ 0 ] === 'expo-notifications'
33+ const expoNotificationsPlugin = config . plugins . find (
34+ plugin => Array . isArray ( plugin ) && plugin [ 0 ] === 'expo-notifications' ,
3535 ) ;
36-
36+
3737 if ( expoNotificationsPlugin && Array . isArray ( expoNotificationsPlugin ) ) {
3838 const pluginConfig = expoNotificationsPlugin [ 1 ] ;
3939 if ( pluginConfig && typeof pluginConfig === 'object' ) {
@@ -56,7 +56,7 @@ const getNotificationConfig = (config: ExpoConfig) => {
5656 color : config . notification . color ,
5757 } ;
5858 }
59-
59+
6060 return { icon : undefined , color : undefined } ;
6161} ;
6262
You can’t perform that action at this time.
0 commit comments