Skip to content

Commit bed24f3

Browse files
authored
test(actions): SDK Publish (#189)
Just a file to trigger the workflow
1 parent 0e288b1 commit bed24f3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

core-web/libs/sdk/client/src/lib/utils/page/common-utils.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,10 @@ export const getPageRequestParams = ({
4747
finalParams['language_id'] = copiedParams['language_id'];
4848
}
4949

50-
if (copiedParams['variantName']) {
51-
finalParams['variantName'] = copiedParams['variantName'];
52-
}
50+
// nonsense change just to trigger a build
51+
finalParams['variantName'] = (copiedParams['variantName'] as string)?.length
52+
? copiedParams['variantName']
53+
: undefined;
5354

5455
if (copiedParams['personaId'] || dotMarketingPersonaId) {
5556
finalParams['personaId'] = copiedParams['personaId'] || dotMarketingPersonaId;

0 commit comments

Comments
 (0)