Skip to content

Commit

Permalink
Merge pull request #98 from emartech/MV-539-inbox-action-title
Browse files Browse the repository at this point in the history
fix: inbox action title
  • Loading branch information
eduzatoni authored Aug 8, 2023
2 parents c62d0da + c3ee00c commit a043358
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ private WritableMap convertActionToMap(ActionModel action) {
WritableMap map = Arguments.createMap();

mapPutNullable(map, "id", action.getId());
mapPutNullable(map, "title", action.getType());
mapPutNullable(map, "title", action.getTitle());
mapPutNullable(map, "type", action.getType());

if (action instanceof AppEventActionModel) {
Expand Down

0 comments on commit a043358

Please sign in to comment.