@stytch/vanilla-js 6.0.0-next.4 → 6.0.0-next.5

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @stytch/vanilla-js
2
2
 
3
+ ## 6.0.0-next.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix typo
8
+
3
9
  ## 6.0.0-next.4
4
10
 
5
11
  ### Patch Changes
@@ -2292,7 +2292,7 @@ const OAuthB2BButton = ({ providerType, loginRedirectUrl, signupRedirectUrl, dis
2292
2292
  const [state] = WebComponents.useGlobalReducer();
2293
2293
  const presentation = WebComponents.usePresentation();
2294
2294
  const iconRegistry = presentation.iconRegistry;
2295
- const id = WebComponents.getButtonId(`sso-${providerType}`, presentation.options);
2295
+ const id = WebComponents.getButtonId(`oauth-${providerType}`, presentation.options);
2296
2296
  const provider = providerInfo[providerType];
2297
2297
  let label = providerType;
2298
2298
  let icon = null;