Skip to content

Commit

Permalink
remove road background image from wigets
Browse files Browse the repository at this point in the history
  • Loading branch information
EyalIlan committed Mar 2, 2024
1 parent a193585 commit b0a4a37
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/molecules/card/AnyWayCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import React, { FC, useState } from 'react';
import { Card, CardContent, Box } from '@material-ui/core';
import { makeStyles } from '@material-ui/core/styles';
import widgetToImage from 'services/to-image.service';

// TEXT BOX COMPONENT ADD FEATURE
import TextBox from 'components/organisms/TextBox'
import { AnyWayButton } from 'components/atoms/AnyWayButton';
Expand Down Expand Up @@ -151,7 +152,7 @@ const AnyWayCard: FC<IProps> = ({
<Card ref={refFn} className={classes.root} variant="outlined">
<Box height={sizes.height} width={sizes.width} position="relative" padding={3}>
{/* BACKGROUND IMAGE */}
<CardBackgroundImage variant={variant.header} />
{/* <CardBackgroundImage variant={variant.header} /> */}

{/* HEADER */}
{variant.header !== HeaderVariant.None && (
Expand Down

0 comments on commit b0a4a37

Please sign in to comment.