Skip to content

Commit

Permalink
fix: resolve comments
Browse files Browse the repository at this point in the history
  • Loading branch information
kubabutkiewicz committed Nov 28, 2023
1 parent 1590069 commit 0efc59e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/libs/Notification/LocalNotification/index.desktop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ const LocalNotification: LocalNotificationModule = {
showUpdateAvailableNotification,
showModifiedExpenseNotification,
};

export default LocalNotification;
6 changes: 5 additions & 1 deletion src/libs/Notification/LocalNotification/index.native.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
import {LocalNotificationModule} from './types';

// Local Notifications are not currently supported on mobile so we'll just noop here.
export default {
const LocalNotification: LocalNotificationModule = {
showCommentNotification: () => {},
showUpdateAvailableNotification: () => {},
showModifiedExpenseNotification: () => {},
};

export default LocalNotification;

0 comments on commit 0efc59e

Please sign in to comment.