diff --git a/Website/modules/interfaces/IManga.tsx b/Website/modules/interfaces/IManga.tsx index a5aedb1..469220b 100644 --- a/Website/modules/interfaces/IManga.tsx +++ b/Website/modules/interfaces/IManga.tsx @@ -29,7 +29,7 @@ export default interface IManga{ "mangaConnector": IMangaConnector } -function ReleaseStatusFromNumber(n: number): string { +export function ReleaseStatusFromNumber(n: number): string { switch(n) { case 0: return "Ongoing"; case 1: return "Completed";