@skrillex1224/playwright-toolkit 2.1.188 → 2.1.190

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/browser.js CHANGED
@@ -1699,10 +1699,6 @@ var normalizeBrowserProfileCore = (value) => {
1699
1699
  if (locale) {
1700
1700
  profile.locale = locale;
1701
1701
  }
1702
- const profileKey = String(source.profile_key || "").trim();
1703
- if (profileKey) {
1704
- profile.profile_key = profileKey;
1705
- }
1706
1702
  const browserMajorVersion = Number(source.browser_major_version || 0);
1707
1703
  if (Number.isFinite(browserMajorVersion) && browserMajorVersion > 0) {
1708
1704
  profile.browser_major_version = browserMajorVersion;