@opexa/portal-components 0.0.758 → 0.0.759

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.
@@ -74,8 +74,8 @@ export function JackpotsCarousel({ style, className, ...props }) {
74
74
  }
75
75
  export function JackpotsCarousels(props) {
76
76
  const future = useFeatureFlag();
77
- if (env.NEXT_PUBLIC_PLATFORM === 'W155' ||
78
- env.NEXT_PUBLIC_PLATFORM === 'P702' ||
77
+ if (env.NEXT_PUBLIC_PLATFORM_CODE === 'W155' ||
78
+ env.NEXT_PUBLIC_PLATFORM_CODE === 'P702' ||
79
79
  future.enabled) {
80
80
  return _jsx(JackpotsCarouselNext, { ...props });
81
81
  }
@@ -39,8 +39,8 @@ export function JackpotsList(props) {
39
39
  const classNames = isString(props.className)
40
40
  ? { root: props.className }
41
41
  : (props.className ?? {});
42
- if (env.NEXT_PUBLIC_PLATFORM === 'W155' ||
43
- env.NEXT_PUBLIC_PLATFORM === 'P702' ||
42
+ if (env.NEXT_PUBLIC_PLATFORM_CODE === 'W155' ||
43
+ env.NEXT_PUBLIC_PLATFORM_CODE === 'P702' ||
44
44
  future.enabled) {
45
45
  return _jsx(JackpotsListNext, { ...props });
46
46
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opexa/portal-components",
3
- "version": "0.0.758",
3
+ "version": "0.0.759",
4
4
  "exports": {
5
5
  "./ui/*": {
6
6
  "types": "./dist/ui/*/index.d.ts",