Skip to content

Commit 2926323

Browse files
committed
Refactor - logs statements removed
1 parent 6dc9728 commit 2926323

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

client/src/components/movie_list/card.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ export const Card = ({
4141
useState(false);
4242
const handleShowNotAuthenticatedModal = () =>
4343
setShowNotAuthenticatedModal((prev) => !prev);
44-
4544
return (
4645
<>
4746
<section className="bg-gray-50 dark:bg-gray-900 ">

client/src/services/movie.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Review } from "./review";
33

44
/** Movie API Calls */
55
export type Movie = {
6-
id?: string;
6+
id: string;
77
title: string;
88
description: string;
99
poster: string;

0 commit comments

Comments
 (0)