We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6dc9728 commit 2926323Copy full SHA for 2926323
client/src/components/movie_list/card.tsx
@@ -41,7 +41,6 @@ export const Card = ({
41
useState(false);
42
const handleShowNotAuthenticatedModal = () =>
43
setShowNotAuthenticatedModal((prev) => !prev);
44
-
45
return (
46
<>
47
<section className="bg-gray-50 dark:bg-gray-900 ">
client/src/services/movie.ts
@@ -3,7 +3,7 @@ import { Review } from "./review";
3
4
/** Movie API Calls */
5
export type Movie = {
6
- id?: string;
+ id: string;
7
title: string;
8
description: string;
9
poster: string;
0 commit comments