Skip to content

Commit

Permalink
Merge pull request #366 from dappforce/integration-unread
Browse files Browse the repository at this point in the history
Add rootFontSize usage to integration
  • Loading branch information
olehmell authored Aug 31, 2023
2 parents 59c6714 + dee37ca commit 996eb7e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions integration/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ type QueryParams = {
parent?: string
order?: string
theme?: string
rootFontSize?: string
resourceId?: string
metadata?: string
enableBackButton?: string
Expand Down Expand Up @@ -165,6 +166,8 @@ const grill = {
query.set('parent', window.location.origin)
if (mergedConfig.order) query.set('order', mergedConfig.order.join(','))
if (mergedConfig.theme) query.set('theme', mergedConfig.theme)
if (mergedConfig.rootFontSize)
query.set('rootFontSize', mergedConfig.rootFontSize)

if (channelConfig) {
const channelSettings = {
Expand Down

0 comments on commit 996eb7e

Please sign in to comment.