diff options
| author | Artrix <[email protected]> | 2024-01-05 05:12:52 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-01-05 20:12:52 +0700 |
| commit | 553fe1c71082b040e9f9667ad3e99acdb33990b2 (patch) | |
| tree | 0c770c406c8ff934ce34d8b10dbae948a554a619 /pages/api/v2/etc | |
| parent | migrate to typescript (diff) | |
| download | moopa-553fe1c71082b040e9f9667ad3e99acdb33990b2.tar.xz moopa-553fe1c71082b040e9f9667ad3e99acdb33990b2.zip | |
feat: Implement a way to review/rate anime (#108)
* Make details cover lead back to anime page
* Make 'markProgress' use object instead of param list
* Import Link
* Implement Rate modal
* Pass session into useAniList
Co-authored-by: Factiven <[email protected]>
* Reimplement using markComplete & add toast for failure
* redefined ratemodal
* fix: home page client error
* update version
---------
Co-authored-by: Factiven <[email protected]>
Diffstat (limited to 'pages/api/v2/etc')
| -rw-r--r-- | pages/api/v2/etc/recent/[page].tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/api/v2/etc/recent/[page].tsx b/pages/api/v2/etc/recent/[page].tsx index e49591c..4e3bc98 100644 --- a/pages/api/v2/etc/recent/[page].tsx +++ b/pages/api/v2/etc/recent/[page].tsx @@ -1,5 +1,5 @@ import { rateLimitStrict, redis } from "@/lib/redis"; -import { AnifyRecentEpisode } from "@/utils/types"; +import { AnifyRecentEpisode } from "types"; import axios from "axios"; import { NextApiRequest, NextApiResponse } from "next"; |