Skip to content

Commit

Permalink
chore(web): rm bad files
Browse files Browse the repository at this point in the history
  • Loading branch information
AshDyson committed Jun 6, 2024
1 parent 8528a08 commit abeea9f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 108 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,8 @@ function Carousel({
>
{data && data.length > 0
? data.map((item, i) => {
if (item === 'watched') return null;
if (!item || item.length === 0 || item === 'watched')
return null;

if (type === 'request') {
return (
Expand Down
2 changes: 1 addition & 1 deletion web/src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import 'react-lazy-load-image-component/src/effects/opacity.css';
import { connect } from 'react-redux';
import { Link } from 'react-router-dom';

import Carousel from '../components/carousel';
import Carousel from '../components/Carousel';
import Hero from '../components/hero';
import { Loading } from '../components/loading';
import Meta from '../components/meta';
Expand Down
105 changes: 0 additions & 105 deletions web/src/pages/search.js

This file was deleted.

2 changes: 1 addition & 1 deletion web/src/pages/Search.js → web/src/pages/search.js.bak
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { useEffect, useState } from 'react';
import { connect } from 'react-redux';
import { useHistory } from 'react-router-dom';

import Carousel from '../components/carousel';
import Carousel from '../components/Carousel';
import Meta from '../components/meta';
import media from '../services/media.service';
import typo from '../styles/components/typography.module.scss';
Expand Down

0 comments on commit abeea9f

Please sign in to comment.