Skip to content

Commit

Permalink
Add new option to param builder
Browse files Browse the repository at this point in the history
  • Loading branch information
AhyoungRyu committed Jun 11, 2024
1 parent c5f2df7 commit aa8308a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions apps/testing/src/utils/paramsBuilder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export const useConfigParams = (initParams: InitialParams): ParamsAsProps => {
accessToken: searchParams.get('accessToken') || initParams.accessToken,
allowProfileEdit: parseValue(searchParams.get('enableProfileEdit')) ?? true,
isMultipleFilesMessageEnabled: parseValue(searchParams.get('enableMultipleFilesMessage')) ?? true,
htmlTextDirection: parseValue(searchParams.get('htmlTextDirection')) ?? 'ltr',
uikitOptions: {},
} as ParamsAsProps;

Expand Down

0 comments on commit aa8308a

Please sign in to comment.