Skip to content

Commit

Permalink
fix(build): rm single quote from floating-ui regex (#6030)
Browse files Browse the repository at this point in the history
  • Loading branch information
inomdzhon authored and actions-user committed Oct 23, 2023
1 parent 1f2c635 commit 0ce9aa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vkui-floating-ui/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const FLOATING_UI_SUB_PACKAGES_NAMES_REGEX_GROUP = FLOATING_UI_SUB_PACKAGES_ENTR
.join('|')
.replace('/', '\\/');
const FLOATING_UI_SUB_PACKAGES_NAME_REGEX = RegExp(
`"@floating-ui\\/('${FLOATING_UI_SUB_PACKAGES_NAMES_REGEX_GROUP}')"`,
`"@floating-ui\\/(${FLOATING_UI_SUB_PACKAGES_NAMES_REGEX_GROUP})"`,
'g',
);

Expand Down

0 comments on commit 0ce9aa5

Please sign in to comment.