diff --git a/plugins/talk-plugin-featured-comments/client/actions.js b/plugins/talk-plugin-featured-comments/client/actions.js index d212ae736..e16f06f48 100644 --- a/plugins/talk-plugin-featured-comments/client/actions.js +++ b/plugins/talk-plugin-featured-comments/client/actions.js @@ -2,8 +2,13 @@ import {OPEN_FEATURED_DIALOG, CLOSE_FEATURED_DIALOG} from './constants'; export const openFeaturedDialog = (comment, asset) => ({ type: OPEN_FEATURED_DIALOG, - comment, - asset, + comment: { + id: comment.id, + tags: comment.tags, + }, + asset: { + id: asset.id, + }, }); export const closeFeaturedDialog = () => ({