Fix type for title

j285he-one-book
Jared He 1 year ago
parent 0028372789
commit 955c906f4e
  1. 2
      lib/books.ts

@ -40,7 +40,7 @@ export async function getBook(id: number): Promise<DetailedBook> {
export interface DetailedBook {
isbn: string | null;
lccn: string | null;
title: string;
title: string | null;
authors: string | null;
edition: string | null;
publisher: string | null;

Loading…
Cancel
Save