Skip to content

Commit

Permalink
Remove Helmet from random-card page
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristophNiehoff committed Nov 19, 2024
1 parent b9b28fd commit 56ee888
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions apps/client/src/pages/random-card.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import '../styles/random-card.css';

import React, { FC } from 'react';
import Helmet from 'react-helmet';
import { Card, CardBody, CardHeader, Col, Container, Row } from 'reactstrap';
import Banner from '../components/banner/banner';

Expand All @@ -11,8 +12,6 @@ const RandomCard: FC = () => {
return (
<div>
<Banner />
{/* @ts-expect-error This seems to be incorrectly typed in helmet*/}
<Helmet bodyAttributes={{ style: 'background-color : #000' }} />
<Container className="about" fluid>
<Row style={{ paddingTop: '20px' }}>
<Col sm="12" md={{ size: 6, offset: 3 }}>
Expand Down

0 comments on commit 56ee888

Please sign in to comment.