Skip to content

Commit

Permalink
Serialize category data once only (#953)
Browse files Browse the repository at this point in the history
* serialize data only once

* remove console log

---------

Co-authored-by: Brian Feister <47546998+bfeister@users.noreply.github.com>
  • Loading branch information
yunakim714 and bfeister committed Jan 31, 2023
1 parent c078552 commit 4b63fc4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ Learn more with our localization guide. https://sfdc.co/localization-guide

// Flatten the root so we can easily access all the categories throughout
// the application.
const categories = flatten(rootCategory, 'categories')
const categories = {root: flatten(rootCategory, 'categories').root}

return {
targetLocale,
Expand Down

0 comments on commit 4b63fc4

Please sign in to comment.