Skip to content

Commit baf4c89

Browse files
committed
fix lint
1 parent c6a7418 commit baf4c89

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/messaging/plugin/src/android/setupFirebaseNotifationIcon.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ export const withExpoPluginFirebaseNotification: ConfigPlugin = config => {
3030
const 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

0 commit comments

Comments
 (0)