Skip to content

Commit

Permalink
disable vendor comprobation on learnpack cta
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavomm19 committed Oct 15, 2024
1 parent 35c8d74 commit 0046274
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/js_modules/syllabus/OpenWithLearnpackCTA.jsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable no-unused-vars */
import React, { useEffect, useState } from 'react';
import {
Box,
Expand Down Expand Up @@ -110,7 +111,8 @@ function OpenWithLearnpackCTA({ currentAsset, variant }) {
{t('learnpack.choose-open')}
</Text>
<Box mt="10px" display="flex" gap="10px" flexDirection={{ base: 'column', md: 'row' }}>
{vendors.length > 0 && (
{/* {vendors.length > 0 && ( */}
{true && (
<Popover>
<PopoverTrigger>
<Button size="sm" padding="4px 8px" fontSize="14px" fontWeight="500" background="gray.200" color="blue.default">
Expand Down Expand Up @@ -148,7 +150,8 @@ function OpenWithLearnpackCTA({ currentAsset, variant }) {
</Box>
</Box>
<Box mt="16px" display="flex" gap="16px" flexDirection={{ base: 'column', md: 'row' }}>
{vendors.length > 0 && (
{/* {vendors.length > 0 && ( */}
{true && (
<Popover>
<PopoverTrigger>
<Button
Expand Down

0 comments on commit 0046274

Please sign in to comment.