Move reader "manga state" to "reader store"

This commit is contained in:
schroda
2025-08-31 12:57:28 +02:00
parent 4e30081ed8
commit 433dc17c35
22 changed files with 124 additions and 209 deletions

View File

@@ -99,6 +99,7 @@ export const MangaCard = memo((props: MangaCardProps) => {
const longPressBind = useLongPress(
useCallback(
(e: any, { context }: any) => {
// eslint-disable-next-line no-param-reassign
e.shiftKey = true;
handleClick(e, context as () => {});
},