@stytch/react 20.0.0-next.4 → 20.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/react
2
2
 
3
+ ## 20.0.0-next.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix typo
8
+
3
9
  ## 20.0.0-next.4
4
10
 
5
11
  ### Patch Changes
@@ -2691,7 +2691,7 @@ const OAuthB2BButton = ({ providerType, loginRedirectUrl, signupRedirectUrl, dis
2691
2691
  const [state] = shadcn.useGlobalReducer();
2692
2692
  const presentation = shadcn.usePresentation();
2693
2693
  const iconRegistry = presentation.iconRegistry;
2694
- const id = shadcn.getButtonId(`sso-${providerType}`, presentation.options);
2694
+ const id = shadcn.getButtonId(`oauth-${providerType}`, presentation.options);
2695
2695
  const provider = providerInfo[providerType];
2696
2696
  let label = providerType;
2697
2697
  let icon = null;